Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,456 for layers (0.25 sec)

  1. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train.py

    num_channels = 1
    
    # Training parameters.
    learning_rate = 0.001
    display_step = 10
    batch_size = 32
    
    # Network parameters.
    n_hidden_1 = 32  # 1st conv layer number of neurons.
    n_hidden_2 = 64  # 2nd conv layer number of neurons.
    n_hidden_3 = 64  # 1st fully connected layer of neurons.
    flatten_size = num_features // 16 * n_hidden_2
    
    seed = 66478
    
    
    class FloatModel(tf.Module):
      """Float inference for mnist model."""
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 20 03:05:18 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

      // CHECK-SAME: %[[CONV2]]
      // CHECK-SAME: data_format = "NHWC"
    
      // ------------------------------------------------------------------------ //
      // Add results of convolution layers #1 and #2.
      // ------------------------------------------------------------------------ //
    
      %14 = "tf.AddV2"(%10, %12) : (tensor<?x256x56x56xf32>, tensor<?x256x56x56xf32>) -> tensor<?x256x56x56xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_update_embedding_enqueue_op_inputs.cc

      OpBuilder builder(&getContext());
      auto func_op = getOperation();
    
      // All TPU embedding layer related ops are annotated with
      // `_tpu_embedding_layer` attribute along with corresponding string attribute.
      // Store all tpu embedding layer related ops with value of
      // `_tpu_embedding_layer` attribute as map key.
      llvm::StringMap<Operation*> enqueue_op_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. pkg/wasm/httpfetcher.go

    	ret, err := io.ReadAll(zr)
    	if err != nil {
    		return nil
    	}
    	return ret
    }
    
    // Just do the best effort.
    // If an error is encountered, just return the original bytes.
    // Errors will be handled upper layers.
    func unboxIfPossible(origin []byte) []byte {
    	b := origin
    	for {
    		if isValidWasmBinary(b) {
    			return b
    		} else if isGZ(b) {
    			if b = getFileFromGZ(b); b == nil {
    				return origin
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_image.go

    		return err
    	}
    
    	return nil
    }
    
    // ImageStats returns the statistics of the image.
    // Notice that current logic doesn't really work for images which share layers (e.g. docker image),
    // this is a known issue, and we'll address this by getting imagefs stats directly from CRI.
    // TODO: Get imagefs stats directly from CRI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows_test.go

    	// Regression test for https://github.com/golang/go/issues/60051.
    
    	// The length of a filename is also limited, so we can't reproduce the
    	// crash by creating a single directory with a very long name; we need two
    	// layers.
    	a200 := strings.Repeat("a", 200)
    	dirname := filepath.Join(t.TempDir(), a200, a200)
    
    	err := os.MkdirAll(dirname, 0o700)
    	if err != nil {
    		t.Skipf("MkdirAll failed: %v", err)
    	}
    	err = os.Chdir(dirname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            noBuildTriggered()
    
            when:
            sourceFile.text = "class Thing {}"
    
            then:
            buildTriggeredAndSucceeded()
        }
    
        // Just exercises the dependency management layers to shake out any weirdness
        @Requires(UnitTestPreconditions.Online)
        def "can resolve dependencies from remote repository"() {
            when:
            def sourceFile = file("src/main/java/Thing.java") << "class Thing {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. README.md

             alt="Istio logo" title="Istio" height="100" width="100" />
    </a>
    
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/Exchange.kt

    import okio.Buffer
    import okio.ForwardingSink
    import okio.ForwardingSource
    import okio.Sink
    import okio.Source
    import okio.buffer
    
    /**
     * Transmits a single HTTP request and a response pair. This layers connection management and events
     * on [ExchangeCodec], which handles the actual I/O.
     */
    class Exchange(
      internal val call: RealCall,
      internal val eventListener: EventListener,
      internal val finder: ExchangeFinder,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

        add additional cost to TPU device time. Below is the logic to transform the
        kernel of shape [7, 7, 3, 64] to [4, 4, 12, 84].
    
        ```python
        conv0 = tf.compat.v1.layers.Conv2D(
         filters=filters,
         kernel_size=kernel_size,
         strides=2,
         padding=('SAME' if strides == 1 else 'VALID'),
         use_bias=False,
         kernel_initializer=tf.variance_scaling_initializer(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top