Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tensor_spec_value (0.23 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.cc

    tuple_value: {
      values: {
        tuple_value: {
          values: {
            tensor_spec_value: {
              name : "x"
              shape: {
                dim: {
                  size: 1
                }
              }
              dtype: DT_FLOAT
            }
          }
          values: {
            tensor_spec_value: {
              name : "y"
              shape: {
                dim: {
                  size: 1
                }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 08 07:00:37 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/runtime/runtime.cc

                    .values(0)
                    .tuple_value()
                    .values();
            for (const StructuredValue& arg : args) {
              PartialTensorShape shape = arg.tensor_spec_value().shape();
              DataType dtype = arg.tensor_spec_value().dtype();
              TaggedValue tensor_spec(shape, dtype);
              input_signature.tuple().emplace_back(tensor_spec);
            }
    
            // Setup output signature.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

            values {
              tuple_value {
              }
            }
            values {
              dict_value {
              }
            }
          }
        }
        output_signature {
          tensor_spec_value {
            shape {
            }
            dtype: DT_FLOAT
          }
        }
      }
    }
    )";
    
    // In this graph, foo.baz and bar.wombat should point to the same object.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

              "dictionary contained a non-tensorspec value for key-value pair: \n",
              "Key: ", key, "Value: \n", value.DebugString()));
        }
        result[key] = &value.tensor_spec_value();
      }
    
      *out = SignatureDefParamsFromNamedParamMap(result);
    
      return Status();
    }
    
    // SignatureDefReturnsFromOutputs takes the "output_signature" field of a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            TF_RETURN_IF_ERROR(FlattenSignature(value, flattened_specs));
          }
          return Status();
        }
        case StructuredValue::kTensorSpecValue: {
          flattened_specs->push_back(&signature.tensor_spec_value());
          return Status();
        }
        case StructuredValue::kNoneValue: {
          // Base case: do nothing.
          // This arises, for example, as the top-level object of an output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

                  }
                }
                values {
                  dict_value {
                  }
                }
              }
            }
            output_signature {
              tensor_spec_value {
                name: "unknown"
                shape {
                  dim {
                    size: 150
                  }
                  dim {
                    size: 150
                  }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top