Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for saturate (0.18 sec)

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

        model = FloatModel()
        optimizer = tf.keras.optimizers.Adam(learning_rate=learning_rate)
    
      def train_step(features):
        inputs = tf.image.convert_image_dtype(
            features['image'], dtype=tf.float32, saturate=False)
        labels = tf.one_hot(features['label'], num_classes)
    
        with tf.GradientTape() as tape:
          logits = model(inputs)
          loss_value = tf.reduce_mean(
    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. internal/grid/README.md

    Do *not* use the MinIO Grid for:
    
    * Large payloads.
    
    Only a single connection is ever made between two servers.
    Likely this means that this connection will not be able to saturate network bandwidth.
    Therefore, using this for large payloads will likely be slower than using a separate connection,
    and other connections will be blocked while the large payload is being sent.
    
    ## Handlers & Routes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Internal.java

    final class Internal {
    
      /**
       * Returns the number of nanoseconds of the given duration without throwing or overflowing.
       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
       * {@link Long#MAX_VALUE} or {@link Long#MIN_VALUE}. This behavior can be useful when decomposing
       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Internal.java

    final class Internal {
    
      /**
       * Returns the number of nanoseconds of the given duration without throwing or overflowing.
       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
       * {@link Long#MAX_VALUE} or {@link Long#MIN_VALUE}. This behavior can be useful when decomposing
       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Internal.java

    final class Internal {
    
      /**
       * Returns the number of nanoseconds of the given duration without throwing or overflowing.
       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
       * {@link Long#MAX_VALUE} or {@link Long#MIN_VALUE}. This behavior can be useful when decomposing
       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/tidy.go

    	}
    
    	// Tidy aims to make 'go test' reproducible for any package in 'all', so we
    	// need to include test dependencies. For modules that specify go 1.15 or
    	// earlier this is a no-op (because 'all' saturates transitive test
    	// dependencies).
    	//
    	// However, with lazy loading (go 1.16+) 'all' includes only the packages that
    	// are transitively imported by the main module, not the test dependencies of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	h := newMACGeneric(key)
    	h.Write(msg)
    	h.Sum(out)
    }
    
    func newMACGeneric(key *[32]byte) macGeneric {
    	m := macGeneric{}
    	initialize(key, &m.macState)
    	return m
    }
    
    // macState holds numbers in saturated 64-bit little-endian limbs. That is,
    // the value of [x0, x1, x2] is x[0] + x[1] * 2⁶⁴ + x[2] * 2¹²⁸.
    type macState struct {
    	// h is the main accumulator. It is to be interpreted modulo 2¹³⁰ - 5, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top