Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Zambia (0.51 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

    ==============================================================================*/
    
    // MakeCleanup(f) returns an RAII cleanup object that calls 'f' in its
    // destructor. The easiest way to use MakeCleanup is with a lambda argument,
    // capturing the return value in an 'auto' local variable. Most users will not
    // need more sophisticated syntax than that.
    //
    // Example:
    //   void func() {
    //     FILE* fp = fopen("data.txt", "r");
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 09 11:16:00 GMT 2020
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/tape.h

                                      std::vector<Gradient*>*, bool)> {
     public:
      template <typename lambda_type>
      explicit ForwardFunction(lambda_type lambda)
          : std::function<Status(const std::vector<Gradient*>&,
                                 std::vector<Gradient*>*, bool)>(lambda) {}
    };
    
    // Computes Jacobian-vector products using forward-mode automatic
    // differentiation.
    //
    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. configure.py

          ask_for_var=(
              'Please specify the (min) Android NDK API level to use. '
              '[Available levels: %s]'
          )
          % api_levels,
          check_success=(lambda *_: True),
          error_msg='Android-%s is not present in the NDK path.',
      )
    
      return android_ndk_api_level
    
    
    def set_gcc_host_compiler_path(environ_cp):
      """Set GCC_HOST_COMPILER_PATH."""
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      // Returns true if the cache is enabled. If false, the BlockFetcher callback
      // is always executed during Read.
      bool IsCacheEnabled() const { return block_size_ > 0 && max_bytes_ > 0; }
    
      // We can not pass a lambda with capture as a function pointer to
      // `TF_StartThread`, so we have to wrap `Prune` inside a static function.
      static void PruneThread(void* param) {
        auto ram_file_block_cache = static_cast<RamFileBlockCache*>(param);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:46:34 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  5. RELEASE.md

        *   Raw TensorFlow functions can now be used in conjunction with the Keras
            Functional API during model creation. This obviates the need for users
            to create Lambda layers in most cases when using the Functional API.
            Like Lambda layers, TensorFlow functions that result in Variable
            creation or assign ops are not supported.
        *   Add support for passing list of lists to the `metrics` argument in Keras
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top