Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for executing_eagerly (0.19 sec)

  1. tensorflow/c/eager/gradients_test.cc

                           /*tfrt*/ ::testing::Values(false),
                           /*executing_eagerly*/ ::testing::Values(true, false)));
    #else
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*executing_eagerly*/ ::testing::Values(true, false)));
    #endif
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/custom_gradient_test.cc

    INSTANTIATE_TEST_SUITE_P(
        CustomGradientTest, CustomGradientTest,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*executing_eagerly*/ ::testing::Values(true, false)));
    
    }  // namespace
    }  // namespace internal
    }  // namespace gradients
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

          the set of expected input keys.
        """
        # When running in graph mode (TF1), tf.Tensor types should be converted to
        # numpy ndarray types to be compatible with `make_tensor_proto`.
        if not context.executing_eagerly():
          with session.Session() as sess:
            repr_ds = replace_tensors_by_numpy_ndarrays(repr_ds, sess)
    
        expected_input_keys = self.expected_input_key_map.get(
            signature_def_key, None
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        # `signature_keys` is guaranteed to have only one element after the
        # validation.
        representative_dataset_map = {signature_keys[0]: representative_dataset}
    
      try:
        if context.executing_eagerly() and not force_graph_mode_calibration:
          logging.info('Calibration step is executed in eager mode.')
          _run_graph_for_calibration_eager_mode(
              float_model_dir, tags, representative_dataset_map
          )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top