Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for needType (0.19 sec)

  1. tensorflow/cc/client/client_session.cc

      return Run(FeedType{}, fetch_outputs, {}, outputs);
    }
    
    Status ClientSession::Run(const FeedType& inputs,
                              const std::vector<Output>& fetch_outputs,
                              std::vector<Tensor>* outputs) const {
      return Run(inputs, fetch_outputs, {}, outputs);
    }
    
    Status ClientSession::Run(const FeedType& inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/cc/client/client_session.h

      /// Same as above, but use the mapping in `inputs` as feeds.
      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 std::vector<Tensor>* outputs) const;
    
      /// Same as above. Additionally runs the operations ins `run_outputs`.
      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 const std::vector<Operation>& run_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. tensorflow/cc/client/client_session_test.cc

                                   &outputs, nullptr, thread::ThreadPoolOptions()));
          test::ExpectTensorEqual<int>(outputs[0],
                                       test::AsTensor<int>({3, 8}, {2}));
        });
      }
      auto c = Sub(root, b, a);
      std::vector<Tensor> outputs;
      TF_EXPECT_OK(session.Run(RunOptions(), ClientSession::FeedType{}, {c}, {},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. tensorflow/cc/ops/while_loop_test.cc

               const std::vector<T>& expected_output_values) {
        ClientSession session(scope_);
    
        DCHECK_EQ(input_values.size(), inputs_.size());
        ClientSession::FeedType feeds;
        for (int i = 0; i < inputs_.size(); ++i) {
          feeds.emplace(inputs_[i], input_values[i]);
        }
    
        std::vector<Tensor> out_tensors;
        TF_ASSERT_OK(session.Run(feeds, outputs_, &out_tensors));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top