Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for walkFn (0.25 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ValueSpec.Doc", Field, 0},
    		{"ValueSpec.Names", Field, 0},
    		{"ValueSpec.Type", Field, 0},
    		{"ValueSpec.Values", Field, 0},
    		{"Var", Const, 0},
    		{"Visitor", Type, 0},
    		{"Walk", Func, 0},
    	},
    	"go/build": {
    		{"(*Context).Import", Method, 0},
    		{"(*Context).ImportDir", Method, 0},
    		{"(*Context).MatchFile", Method, 2},
    		{"(*Context).SrcDirs", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2F8E          ; mapped                 ; 8840          # 3.0  KANGXI RADICAL BLOOD
    2F8F          ; mapped                 ; 884C          # 3.0  KANGXI RADICAL WALK ENCLOSURE
    2F90          ; mapped                 ; 8863          # 3.0  KANGXI RADICAL CLOTHES
    2F91          ; mapped                 ; 897E          # 3.0  KANGXI RADICAL WEST
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. RELEASE.md

        *   Code that requires very tricky shape manipulation via converted op
            layers in order to work, where the Keras symbolic shape inference proves
            insufficient.
        *   Code that tries manually walking a `tf.keras.Model` layer by layer and
            assumes layers only ever have one positional argument. This assumption
            doesn't hold true before TF 2.4 either, but is more likely to cause
            issues now.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ellipsis_mask = 1<<3 = 8
    new_axis_mask = 1<<2 = 4
    shrink_axis_mask = 1<<0 = 1
    ```
    
    In this case if `foo.shape` is (5, 5, 5, 5, 5, 5) the final shape of
    the slice becomes (2, 1, 5, 5, 2, 5).
    Let us walk step by step through each argument specification.
    
    1.  The first argument in the example slice is turned into `begin = 1` and
    `end = begin + 1 = 2`. To disambiguate from the original spec `2:4` we
    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