Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Tretter (0.2 sec)

  1. tensorflow/c/c_api.h

    //           can be null. The names used for function inputs are normalized
    //           names of the operations (usually placeholders) pointed to by
    //           `inputs`. These operation names should start with a letter.
    //           Normalization will convert all letters to lowercase and
    //           non-alphanumeric characters to '_' to make resulting names match
    //           the "[a-z][a-z0-9_]*" pattern for operation argument names.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/c_api_internal.h

      std::atomic<bool> extend_before_run;
    };
    
    struct TF_ImportGraphDefOptions {
      tensorflow::ImportGraphDefOptions opts;
    
      // Backing memory for TensorId fields in opts.
      // TODO(skyewm): it'd be better if ImportGraphDefOptions owned this.
      std::vector<tensorflow::string> tensor_id_data;
    };
    
    struct TF_ImportGraphDefResults {
      std::vector<TF_Output> return_tensors;
      std::vector<TF_Operation*> return_nodes;
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/tape.h

          absl::Span<const int64_t> input_tensor_id,
          absl::Span<const tensorflow::DataType> input_dtypes,
          const std::function<BackwardFunction*()>& backward_function_getter,
          const std::function<void(BackwardFunction*)>& backward_function_deleter);
    
      void DeleteTrace(int64_t tensor_id);
    
      // Consumes the internal state of the tape (so cannot be called more than
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
Back to top