Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for nn (0.19 sec)

  1. tensorflow/c/experimental/gradients/nn_grad.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/gradients/nn_grad.h"
    
    #include "absl/types/span.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/immediate_execution_context.h"
    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/nn_grad_test.cc

    #include "tensorflow/c/experimental/gradients/nn_grad.h"
    
    #include "tensorflow/c/eager/c_api_test_util.h"
    #include "tensorflow/c/eager/unified_api_testutil.h"
    #include "tensorflow/c/experimental/gradients/grad_test_helper.h"
    #include "tensorflow/c/experimental/gradients/tape/tape_context.h"
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    #include "tensorflow/c/tf_status_helper.h"
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/BUILD

            "//tensorflow/c/experimental/ops:array_ops",
            "//tensorflow/c/experimental/ops:math_ops",
            "//tensorflow/c/experimental/ops:nn_ops",
        ],
    )
    
    cc_library(
        name = "nn_grad",
        srcs = ["nn_grad.cc"],
        hdrs = [
            "nn_grad.h",
        ],
        visibility = ["//visibility:private"],
        deps = [
            "//tensorflow/c/eager:abstract_tensor_handle",
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:39:44 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. RELEASE.md

    *   `tf.nn`
    
        *   `tf.nn.embedding_lookup_sparse` and `tf.nn.safe_embedding_lookup_sparse` now support ids and weights described by `tf.RaggedTensor`s.
        *   Added a new boolean argument `allow_fast_lookup` to `tf.nn.embedding_lookup_sparse` and `tf.nn.safe_embedding_lookup_sparse`, which enables a simplified and typically faster lookup procedure.
    
    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)
  5. src/archive/tar/reader.go

    // io.EOF when it is hit before len(b) bytes are read.
    func tryReadFull(r io.Reader, b []byte) (n int, err error) {
    	for len(b) > n && err == nil {
    		var nn int
    		nn, err = r.Read(b[n:])
    		n += nn
    	}
    	if len(b) == n && err == io.EOF {
    		err = nil
    	}
    	return n, err
    }
    
    // readSpecialFile is like io.ReadAll except it returns
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    *   [C/C++ license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/framework/op.cc#L1)
    *   [Python license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/nn.py#L1)
    *   [Java license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/java/src/main/java/org/tensorflow/Graph.java#L1)
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/gradients/math_grad.cc

    #include "tensorflow/c/eager/gradients.h"
    #include "tensorflow/c/experimental/ops/array_ops.h"
    #include "tensorflow/c/experimental/ops/math_ops.h"
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    
    using std::vector;
    using tensorflow::ops::AddV2;
    using tensorflow::ops::Div;
    using tensorflow::ops::DivNoNan;
    using tensorflow::ops::MatMul;
    using tensorflow::ops::Mul;
    using tensorflow::ops::Neg;
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

       *     777M::::::Z7777777Z77                        N++ZZZZNN
       *    7777M:::::M7777777$777M                       $++IZZZZM
       *   M777$:::::N777777$M7777M                       +++++ZZZDN
       *     NN$::::::7777$$M777777N                      N+++ZZZZNZ
       *       N::::::N:7$O:77777777                      N++++ZZZZN
       *       M::::::::::::N77777777+                   +?+++++ZZZM
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

       *     777M::::::Z7777777Z77                        N++ZZZZNN
       *    7777M:::::M7777777$777M                       $++IZZZZM
       *   M777$:::::N777777$M7777M                       +++++ZZZDN
       *     NN$::::::7777$$M777777N                      N+++ZZZZNZ
       *       N::::::N:7$O:77777777                      N++++ZZZZN
       *       M::::::::::::N77777777+                   +?+++++ZZZM
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/c/BUILD

            "//tensorflow/core:framework_internal",
            "//tensorflow/core:functional_ops_op_lib",
            "//tensorflow/core:lib",
            "//tensorflow/core:math_ops_op_lib",
            "//tensorflow/core:nn_ops_op_lib",
            "//tensorflow/core:no_op_op_lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:sendrecv_ops_op_lib",
            "//tensorflow/core:spectral_ops_op_lib",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
Back to top