Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetInputValues (0.18 sec)

  1. tensorflow/cc/saved_model/util_test.cc

      std::vector<std::pair<string, Tensor>> inputs;
      EXPECT_THAT(GetInputValues(sig_, local_request, inputs),
                  StatusIs(absl::StatusCode::kInvalidArgument));
    }
    
    TEST_F(GetInputValuesTest, RequestContainsAllTheInputs) {
      std::vector<std::pair<string, Tensor>> inputs;
      TF_EXPECT_OK(GetInputValues(sig_, request_, inputs));
    
      std::vector<std::pair<string, TensorProto>> exp_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor.java

            if (!rule.getSpec().isSatisfiedBy(selection)) {
                return;
            }
    
            List<Object> inputValues = getInputValues(rule.getAction().getInputTypes(), metadataProvider);
    
            if (inputValues == null) {
                // Broken meta-data, bail
                return;
            }
    
            if (inputValues.contains(null)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/util.h

    // Get the default input value from signature if it's missing in the request
    // inputs. If `is_alias` is set to true, the keys of the `request_inputs` are
    // alias names rather than the feed names in the graph.
    Status GetInputValues(
        const SignatureDef& signature,
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& request_inputs,
        std::vector<std::pair<string, Tensor>>& inputs);
    
    }  // namespace saved_model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 31 23:00:51 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/util.cc

        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& map) {
      std::set<std::string> keys;
      for (const auto& it : map) {
        keys.insert(it.first);
      }
      return keys;
    }
    
    Status GetInputValues(
        const SignatureDef& signature,
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& request_inputs,
        std::vector<std::pair<string, Tensor>>& inputs) {
      const TensorProto* tensor_proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top