Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for InitializeTableFromTextFileV2 (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %handle = "tf.HashTable"() {container = "", device = "", shared_name = "table", key_dtype = !tf_type.string, value_dtype = i32} : () -> tensor<*x!tf_type.stringref>
    
      // CHECK: "tf.InitializeTableFromTextFileV2"([[handle]]
      // CHECK-SAME: device = ""
      "tf.InitializeTableFromTextFile"(%handle, %arg0) {device = "", key_index=1, value_index=1, delimiter="\t"} : (tensor<*x!tf_type.stringref>, tensor<!tf_type.string>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    allocate buffer space to receive the device output from all replicas, which is
    not required. We can use the output of first replica in such cases.
    ### `-tf-init-text-file-to-import`
    
    _Convert InitializeTableFromTextFileV2 ops to LookupTableImportV2Op to remove the dependency on asset files_
    
    
    #### Options
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        DefaultValuedOptionalAttr<I64Attr, "0">:$offset
      );
    
      let results = (outs);
    }
    
    def TF_InitializeTableFromTextFileV2Op : TF_Op<"InitializeTableFromTextFileV2", []> {
      let summary = "Initializes a table from a text file.";
    
      let description = [{
    It inserts one key-value pair into the table for each line of the file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top