Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Kissling (0.21 sec)

  1. tensorflow/c/c_api.h

    // TF_ImportGraphDefOptionsAddInputMapping() that didn't appear in the GraphDef
    // and weren't used as input to any node in the imported graph def. The number
    // of fetched mappings is returned in `num_missing_unused_input_mappings`. The
    // array of each mapping's source node name is returned in `src_names`, and the
    // array of each mapping's source index is returned in `src_indexes`.
    //
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/eager/tape.h

            VLOG(1) << "Tensor " << id << " is source";
            continue;
          }
          auto missing_it = state.op_missing_tensor.find(op_id);
          if (missing_it != state.op_missing_tensor.end()) {
            missing_it->second--;
            VLOG(1) << "Op " << op_id << " missing " << missing_it->second
                    << " output gradients";
            if (missing_it->second == 0) {
              op_stack.insert(op_stack.begin(), op_id);
            }
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  3. tensorflow/c/c_api_internal.h

    struct TF_ImportGraphDefResults {
      std::vector<TF_Output> return_tensors;
      std::vector<TF_Operation*> return_nodes;
      std::vector<const char*> missing_unused_key_names;
      std::vector<int> missing_unused_key_indexes;
    
      // Backing memory for missing_unused_key_names values.
      std::vector<tensorflow::string> missing_unused_key_names_data;
    };
    
    struct TF_DeviceList {
      std::vector<tensorflow::DeviceAttributes> response;
    };
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// NOTE: The requirements specify that `TF_ALREADY_EXISTS` is not returned if
      /// directory exists. Similarly, `TF_NOT_FOUND` is not be returned, as the
      /// missing directory entry and all its descendants will be created by the
      /// plugin.
      ///
      /// DEFAULT IMPLEMENTATION: Creates directories one by one. Needs
      /// `path_exists`, `is_directory`, and `create_dir`.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top