Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ParseExample (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example_v2.pbtxt

          }
        }
      }
    }
    node {
      name: "ParseExample/ParseExampleV2"
      op: "ParseExampleV2"
      input: "input0"
      input: "ParseExample/ParseExampleV2/names"
      input: "ParseExample/ParseExampleV2/sparse_keys"
      input: "ParseExample/ParseExampleV2/dense_keys"
      input: "ParseExample/ParseExampleV2/ragged_keys"
      input: "ParseExample/Const"
      input: "ParseExample/Const_1"
      attr {
        key: "Tdense"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/parse_example.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    // CHECK:      name: "tf.ParseExample"
    // CHECK-NEXT: op: "ParseExample"
    // CHECK-NEXT: input: "tf.Const{{_.*_3}}"
    // CHECK-NEXT: input: "tf.Const"
    // CHECK-NEXT: input: "tf.Const{{_.*_1}}"
    // CHECK-NEXT: input: "tf.Const{{_.*_2}}"
    // CHECK-NEXT: attr {
    // CHECK-NEXT:   key: "Ndense"
    // CHECK-NEXT:   value {
    // CHECK-NEXT:     i: 1
    // CHECK-NEXT:   }
    // CHECK-NEXT: }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/parse_example_v2.mlir

          // CHECK:      name: "ParseExample"
          // CHECK-NEXT: op: "ParseExampleV2"
          // CHECK-NEXT: input: "input0"
          // CHECK-NEXT: input: "tf.Const{{_.*_3}}"
          // CHECK-NEXT: input: "tf.Const{{_.*_5}}"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            }
          }
        }
        node {
          name: "ParseExample/ParseExample"
          op: "ParseExample"
          input: "tf_example"
          input: "ParseExample/ParseExample/names"
          input: "ParseExample/ParseExample/dense_keys_0"
          input: "ParseExample/ParseExample/dense_keys_1"
          input: "ParseExample/Const"
          input: "ParseExample/Reshape"
          attr {
            key: "Ndense"
            value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false -tf-output-arrays=result %s | FileCheck %s
    
    # CHECK: %[[output:.*]], %[[control:.*]]tf_executor.island wraps "tf.ParseExample"
    # CHECK: operandSegmentSizes = array<i32: 1, 1, 0, 1, 1>
    # CHECK: resultSegmentSizes = array<i32: 0, 0, 0, 1>
    # CHECK: tf_executor.fetch %[[output]] : tensor<*xi64>
    
    node {
      name: "serilaized"
      op: "Const"
      attr {
        key: "dtype"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/lift_tflite_flex_ops.mlir

      ) -> (tensor<1x1x!tf_type.string>, tensor<1x1x!tf_type.string>)
      func.return %4#0, %4#1 : tensor<1x1x!tf_type.string>, tensor<1x1x!tf_type.string>
    // CHECK: "tf.ParseExample"(
    // CHECK-SAME: operandSegmentSizes = array<i32: 1, 1, 0, 2, 2>, resultSegmentSizes = array<i32: 0, 0, 0, 2>
    }
    
    // CHECK-LABEL: TfMapDataset
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // CHECK-SAME: {{.*}} !tfrt.chain
    // CHECK-SAME: [[serialized:%.*]]: !tfrt_fallback.tf_tensor
    func.func @main(%serialized: tensor<32x!tf_type.string>) -> (tensor<?x2xi64>) attributes {tf.entry_function = {inputs = "input0", outputs = "ParseExample/ParseExampleV2"}} {
      %dense_default_0 = "tf.Const"() {device = "/device:CPU:0", dtype = f32, value = dense<[]> : tensor<0xf32>} : () -> tensor<0xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/analysis/cost_analysis.mlir

        // expected-remark@+1 {{Cost: 1}}
        %11 = "tf.Const"() {value = dense<-1> : tensor<i32>} : () -> tensor<i32>
        // expected-remark@+1 {{Cost: 19}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        }
        // TODO(b/204997177): Deprecate and remove.
        func::FuncOp func() {  return ResolveFunc(nullptr); }
      }];
    }
    
    def TF_ParseExampleOp : TF_Op<"ParseExample",
                                   [Pure,
                                    AttrSizedResultSegments,
                                    AttrSizedOperandSegments]> {
    
      let summary =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top