Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assignments (0.21 sec)

  1. RELEASE.md

    *   Added an easy way to add and dynamically load user-defined ops
    *   Built out a good suite of tests, things should break less!
    *   Added `MetaGraphDef` which makes it easier to save graphs with metadata
    *   Added assignments for "Deep Learning with TensorFlow" udacity course
    
    ## Bug Fixes and Other Changes
    
    *   Added a versioning framework for `GraphDef`s to ensure compatibility
    *   Enforced Python 3 compatibility
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasCanonicalizer = 1;
    }
    
    def TF_AssignOp : TF_Op<"Assign", []> {
      let summary = "Update 'ref' by assigning 'value' to it.";
    
      let description = [{
    This operation outputs "ref" after the assignment is done.
    This makes it easier to chain operations that need to use the reset value.
      }];
    
      let arguments = (ins
        Arg<TF_Tensor, [{Should be from a `Variable` node. May be uninitialized.}]>:$ref,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top