Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for encloses (0.16 sec)

  1. RELEASE.md

    *   `tf.random`:
        * Added `tf.random.experimental.index_shuffle`, for shuffling a sequence without materializing the sequence in memory.
    
    *   `tf.RaggedTensor`:
        *   Introduced `tf.experimental.RowPartition`, which encodes how one dimension in a RaggedTensor relates to another, into the public API.
        *   Introduced `tf.experimental.DynamicRaggedShape`, which represents the shape of a RaggedTensor.
    
    ## Security
    
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. configure.py

        symlink_force(filepath, new_filepath)
    
    
    def validate_cuda_config(environ_cp):
      """Run find_cuda_config.py and return cuda_toolkit_path, or None."""
    
      def maybe_encode_env(env):
        """Encodes unicode in env to str on Windows python 2.x."""
        if not is_windows() or sys.version_info[0] != 2:
          return env
        for k, v in env.items():
          if isinstance(k, unicode):
            k = k.encode('ascii')
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
Back to top