Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for _top (0.09 sec)

  1. RELEASE.md

            architecture. To disable them, build with
            `--define=tensorflow_mkldnn_contraction_kernel=0`.
        *   `tf.linspace(start, stop, num)` now always uses "stop" as last value
            (for num > 1)
        *   Added top-k to precision and recall to keras metrics.
        *   Add a ragged size op and register it to the op dispatcher
    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. src/cmd/compile/internal/ssa/rewritegeneric.go

    	v_0 := v.Args[0]
    	// match: (IMake _typ (StructMake1 val))
    	// result: (IMake _typ val)
    	for {
    		_typ := v_0
    		if v_1.Op != OpStructMake1 {
    			break
    		}
    		val := v_1.Args[0]
    		v.reset(OpIMake)
    		v.AddArg2(_typ, val)
    		return true
    	}
    	// match: (IMake _typ (ArrayMake1 val))
    	// result: (IMake _typ val)
    	for {
    		_typ := v_0
    		if v_1.Op != OpArrayMake1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `(stop - start) / (num - 1)`, so that the last one is exactly `stop`.
    
    For example:
    
    ```
    tf.linspace(10.0, 12.0, 3, name="linspace") => [ 10.0  11.0  12.0]
    ```
      }];
    
      let arguments = (ins
        Arg<TF_FloatTensor, [{0-D tensor. First entry in the range.}]>:$start,
        Arg<TF_FloatTensor, [{0-D tensor. Last entry in the range.}]>:$stop,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apps__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.daemon.protocol.Status> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Status.java:0)
    Class <org.gradle.launcher.daemon.protocol.Stop> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Stop.java:0)
    Class <org.gradle.launcher.daemon.protocol.StopWhenIdle> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (StopWhenIdle.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation_test.go

    				Exec: &core.ExecAction{
    					Command: []string{"echo", "post start"},
    				},
    			},
    			PreStop: &core.LifecycleHandler{
    				Exec: &core.ExecAction{
    					Command: []string{"echo", "pre stop"},
    				},
    			},
    		},
    		LivenessProbe: &core.Probe{
    			ProbeHandler: core.ProbeHandler{
    				TCPSocket: &core.TCPSocketAction{
    					Port: intstr.FromInt32(80),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top