Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for individual (0.19 sec)

  1. ISSUES.md

    1.  The issue should be related to the repo it is created in.
    
    **Here's why we have this policy:** We want to focus on the work that benefits
    the whole community, e.g., fixing bugs and adding features. Individual support
    should be sought on Stack Overflow or other non-GitHub channels. It helps us to
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 11 22:37:27 GMT 2021
    - 606 bytes
    - Viewed (0)
  2. CODE_OF_CONDUCT.md

    other official TensorFlow web presence allowing for community interactions, as well as at all official TensorFlow events, whether offline or online.
    
    The Code of Conduct also applies within project spaces and in public spaces whenever an individual is representing TensorFlow or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed or de facto representative at...
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Feb 05 18:43:16 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    Please fill out either the individual or corporate Contributor License Agreement (CLA).
    
      * If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA](https://code.google.com/legal/individual-cla-v1.0.html).
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api.h

                                                        TF_Status* status);
    // Get an attribute type given an op name; a fusion of TFE_NewOp and
    // TFE_OpGetAttrType for use from Python without the overhead of the individual
    // calls and memory management of TFE_Op.
    TF_CAPI_EXPORT extern TF_AttrType TFE_OpNameGetAttrType(
        TFE_Context* ctx, const char* op_or_function_name, const char* attr_name,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 22.8K bytes
    - Viewed (1)
  5. ci/official/utilities/extract_resultstore_links.py

        print('Found no ResultStore links for Bazel build/test invocations.')
      else:
        print(f'Found {len(result_store_dict)} ResultStore link(s) for '
              f'Bazel invocations.\n'
              f'ResultStore contains individual representations of each target '
              f'that were run/built during the invocation.\n'
              f'These results are generally easier to read than looking through '
              f'the entire build log:\n')
      i = 1
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      // Helper to copy a tensor handle from another device once for each component
      // of the ParallelDevice.
      //
      // Sets a bad status and returns a nullptr if `tensor` is already on the
      // ParallelDevice, or if the individual copies fail.
      std::unique_ptr<ParallelTensor> CopyToParallelDevice(TFE_Context* context,
                                                           TFE_TensorHandle* tensor,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 25 15:21:13 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  7. LICENSE

          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Nov 29 17:31:56 GMT 2021
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

            "memory regions");
    
      return OkStatus();
    }
    
    // Validates the operations supplied by the plugin.
    //
    // Uses the 4 simpler `ValidateHelper(const TF_...*)` to validate each
    // individual function table and then checks that the function table for a
    // specific file type exists if the plugin offers support for creating that
    // type of files.
    static Status ValidateOperations(const TF_FilesystemPluginOps* ops) {
    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)
  9. RELEASE.md

        *   `tf.data.experimental.service.DispatchServer` now takes a config tuple
            instead of individual arguments. Usages should be updated to
            `tf.data.experimental.service.DispatchServer(dispatcher_config)`.
        *   `tf.data.experimental.service.WorkerServer` now takes a config tuple
            instead of individual arguments. Usages should be updated to
            `tf.data.experimental.service.WorkerServer(worker_config)`.
    
    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)
  10. tensorflow/c/c_api_function_test.cc

      // Define the functions
      TF_Function* func;
      TF_Function* grad_func;
      DefineFunction("FooFunc", &func);
      DefineFunction("MyGrad", &grad_func);
    
      // Add functions individually
      TF_GraphCopyFunction(host_graph_, func, nullptr, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      TF_GraphCopyFunction(host_graph_, grad_func, nullptr, s_);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
Back to top