Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _create_simple_gather_and_conv_model (0.28 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      @test_util.run_in_graph_and_eager_modes
      def test_qat_gather_and_conv_model(
          self,
      ):
        input_type = dtypes.int32
        model = self._create_simple_gather_and_conv_model(
            input_type,
            filter_shape=(2, 3, 3, 1024),
            is_qat_model=True,
        )
    
        saved_model_save.save(model, self._input_saved_model_path)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            sess,
            tags,
            signature_def_map={signature_key: sig_def},
            main_op=init_op,
            assets_collection=assets_collection,
        )
        v1_builder.save()
    
      def _create_simple_gather_and_conv_model(
          self,
          input_type: dtypes.DType,
          filter_shape: Sequence[int],
          is_qat_model: bool = False,
      ) -> module.Module:
        class SimpleGatherAndConvModel(module.Module):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top