Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for src_saved_model_path_ (0.26 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

            }
            py_function_library.SaveExportedModel(
                dst_saved_model_path, *exported_model, src_saved_model_path, tags,
                signature_def_map);
    
            return absl::OkStatus();
          },
          R"pbdoc(
          Quantizes a model that went through quantization-aware training (QAT)
          saved at `src_saved_model_path`. The resulting model will be saved to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

    
    def _run_static_range_qat(
        src_saved_model_path: str,
        dst_saved_model_path: str,
        quant_opts: _QuantizationOptions,
        signature_def_map: _SignatureDefMap,
    ) -> None:
      """Runs static-range quantization for a Quantization-Aware Trained model.
    
      Runs the quantization for a model trained using QAT.
    
      Args:
        src_saved_model_path: Path to the source SavedModel directory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        exported_model: exported_model_pb2.ExportedModel,
        src_saved_model_path: str,
        dst_saved_model_path: str,
        signature_def_map: Mapping[str, meta_graph_pb2.SignatureDef],
        tags: Collection[str],
    ) -> bool:
      """Saves the model and copies the assets from the source model.
    
      Args:
        exported_model: ExportedModel to save.
        src_saved_model_path: Path to the source SavedModel. This will be used to
    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