Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for disable_eager_execution (0.51 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/integration_test/custom_aggregator_op_test.py

    _CalibrationMethod = (
        stablehlo_quant_config_pb2.CalibrationOptions.CalibrationMethod
    )
    
    
    class CustomAggregatorTest(test.TestCase):
    
      def setUp(self):
        super(CustomAggregatorTest, self).setUp()
        ops.disable_eager_execution()
    
      def testBypassAndMinMax(self):
        with self.session():
          input_tensor = array_ops.constant(
              [1.0, 2.0, 3.0, 4.0, 5.0], dtypes.float32
          )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/generate_saved_models.py

      @def_function.function(
          input_signature=[tensor_spec.TensorSpec(shape=None, dtype=dtypes.string)])
      def lookup(self, word):
        return self.table.lookup(word)
    
    
    def get_simple_session():
      ops.disable_eager_execution()
      sess = session_lib.Session()
      variables.Variable(1.)
      sess.run(variables.global_variables_initializer())
      return sess
    
    
    MODULE_CTORS = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

      # Default TF1.x uses reference variables that are not supported by SavedModel
      # v1 Importer. To use SavedModel V1 Importer, resource variables should be
      # enabled.
      tf.enable_resource_variables()
      tf.compat.v1.disable_eager_execution()
    
    
    # This function needs to take a "create_module_fn", as opposed to just the
    # module itself, because the creation of the module has to be delayed until
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top