Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tensor_spec_value (0.81 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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