Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for save_model_v1 (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      path = file_io.join(
          saved_model_dir, saved_model_constants.SAVED_MODEL_FILENAME_PB
      )
      file_io.atomic_write_string_to_file(path, saved_model_proto_serialized)
    
    
    def save_model_v1(
        graph_def: graph_pb2.GraphDef,
        output_dir: str,
        signature_def_map: _SignatureDefMap,
        tags: Collection[str],
        init_op_name: Optional[str] = None,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        signature_def_map: Signature key -> SignatureDef mapping.
        tags: Tags to attach to the saved MetaGraphDef.
    
      Returns:
        `True` upon successfully saving the model.
      """
      save_model.save_model_v1(
          exported_model.graph_def,
          dst_saved_model_path,
          signature_def_map,
          tags,
          init_op_name=exported_model.init_node_name,
          saver_def=_get_saver_def_or_none(exported_model),
    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