Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Staples (0.19 sec)

  1. tensorflow/c/eager/c_api_unified_experimental.h

    // A TF_ExecutionContext stores knowledge about how to execute an operation.
    // E.g. it could know whether we're in eager mode or graph mode, keeps track
    // of gradient tapes, etc.
    typedef struct TF_ExecutionContext TF_ExecutionContext;
    
    // A TF_AbstractTensor is an input to an operation. E.g. it could be a union
    // type of eager and graph tensors. It is also the result of executing an
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Oct 24 11:27:00 GMT 2021
    - 7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.h

    // scope for now. I'm just mentioning this here as that transition will mean
    // removal of the registration part from `Env` and adding it here instead: we
    // will need tables to hold for each scheme the function tables that implement
    // the needed functionality instead of the current `FileSystemRegistry` code in
    // `core/platform/env.cc`.
    class ModularFileSystem final : public FileSystem {
     public:
      ModularFileSystem(
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow checks that the plugin supplies all mandatory operations and
    /// then copies these tables to a different memory location, marking the new
    /// operation tables as read-only. Once a plugin is loaded, none of these
    /// operation pointers may change.
    ///
    /// There are 4 function tables: one for each of the 3 file objects in
    /// TensorFlow (i.e., `RandomAccessFile`, `WritableFile`,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    //
    // Must be called only with `index` a valid index in `info->ops`.
    static Status RegisterFileSystem(const TF_FilesystemPluginInfo* info,
                                     int index) {
      // Step 1: Copy all the function tables to core TensorFlow memory space
      auto core_filesystem_ops = CopyToCore<TF_FilesystemOps>(
          info->ops[index].filesystem_ops, info->ops[index].filesystem_ops_size);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 07 22:08:43 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  5. RELEASE.md

    for all files with the `.keras` extension. This file format targets the Python runtime only and makes it possible to reload Python objects identical to the saved originals. The format supports non-numerical state such as vocabulary files and lookup tables, and it is easy to customize in the case of custom layers with exotic elements of state (e.g. a FIFOQueue). The format does not rely on bytecode or pickling, and is safe by default. Note that as a result, Python `lambdas` are disallowed at loading...
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
Back to top