Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for asset_filepaths (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/hash_table_asset_v1.py

      table = tf.lookup.StaticVocabularyTable(table_initializer, num_oov_buckets=10)
      vocab_file_tensor = tf.convert_to_tensor(
          vocabulary_file, tf.string, name='asset_filepath')
      tf.add_to_collection(tf.GraphKeys.ASSET_FILEPATHS, vocab_file_tensor)
    
      x = tf.placeholder(tf.string, shape=(), name='input')
      r = table.lookup(x)
    
      tensor_info_x = tf.compat.v1.saved_model.utils.build_tensor_info(x)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              signature_def_key,
              tags,
              inputs=inputs,
              outputs=outputs,
              init_op=lookup_ops.tables_initializer(),
              assets_collection=ops.get_collection(ops.GraphKeys.ASSET_FILEPATHS),
          )
    
        return inputs, outputs
    
      def _create_and_save_file_init_hash_table_model_tf1(
          self,
          output_path: str,
          tags: Collection[str],
          signature_def_key: str,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

        restore_op_name: "save/restore_all"
        max_to_keep: 5
        sharded: true
        keep_checkpoint_every_n_hours: 10000.0
        version: V2
      }
      collection_def {
        key: "asset_filepaths"
        value {
          node_list {
            value: "Const:0"
          }
        }
      }
      collection_def {
        key: "legacy_init_op"
        value {
          node_list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

        const string asset_directory =
            io::JoinPath(export_dir, kSavedModelAssetsDirectory);
        const string asset_filename = "foo.txt";
        const string asset_filepath = io::JoinPath(asset_directory, asset_filename);
        TF_EXPECT_OK(Env::Default()->FileExists(asset_filepath));
    
        std::vector<Tensor> path_outputs;
        TF_ASSERT_OK(
            bundle.GetSession()->Run({}, {"filename_tensor:0"}, {}, &path_outputs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/saved_model_bundle_test.cc

        const string asset_directory =
            io::JoinPath(export_dir, kSavedModelAssetsDirectory);
        const string asset_filename = "foo.txt";
        const string asset_filepath = io::JoinPath(asset_directory, asset_filename);
        TF_EXPECT_OK(Env::Default()->FileExists(asset_filepath));
    
        std::vector<Tensor> path_outputs;
        TF_ASSERT_OK(
            bundle.session->Run({}, {"filename_tensor:0"}, {}, &path_outputs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top