Ejemplo n.º 1
0
 def test_with_mnist_training_example_unspecified_clients(self):
   executor_test_utils.test_mnist_training(
       self, executor_stacks.create_local_executor())
Ejemplo n.º 2
0
 def test_with_mnist_training_example_with_lambda_executor(self):
     executor_test_utils.test_mnist_training(
         self, _make_test_executor(1, use_lambda_executor=True))
Ejemplo n.º 3
0
 def test_with_mnist_training_example(self):
   executor_test_utils.test_mnist_training(
       self, executor_stacks.create_local_executor(1))
Ejemplo n.º 4
0
 def test_with_mnist_training_example(self):
     executor_test_utils.test_mnist_training(self, _make_test_executor(1))
Ejemplo n.º 5
0
 def test_with_mnist_training_example(self):
     executor_test_utils.test_mnist_training(self,
                                             eager_executor.EagerExecutor())
Ejemplo n.º 6
0
 def test_with_mnist_training_example(self):
     ex, _ = _make_executor_and_tracer_for_test(support_lambdas=True)
     executor_test_utils.test_mnist_training(self, ex)
Ejemplo n.º 7
0
 def test_with_mnist_training_example_streaming_rpc(self):
   with test_context(rpc_mode='STREAMING') as context:
     executor_test_utils.test_mnist_training(self, context.executor)
Ejemplo n.º 8
0
 def test_with_mnist_training_example(self):
   with test_context() as context:
     executor_test_utils.test_mnist_training(self, context.executor)