Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for mnist (0.56 sec)

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

    # limitations under the License.
    """MNIST model float training script with TensorFlow graph execution."""
    
    import os
    from absl import flags
    
    import tensorflow as tf
    import tensorflow_datasets as tfds
    from tensorflow.compiler.mlir.tfr.examples.mnist import gen_mnist_ops
    from tensorflow.compiler.mlir.tfr.examples.mnist import ops_defs  # pylint: disable=unused-import
    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/tfr/examples/mnist/mnist_ops_test.py

    # limitations under the License.
    """Tests for tensorflow.compiler.mlir.tfr.examples.mnist.ops_defs."""
    
    import os
    import tensorflow as tf
    
    from tensorflow.compiler.mlir.tfr.examples.mnist import gen_mnist_ops
    from tensorflow.compiler.mlir.tfr.examples.mnist import ops_defs
    from tensorflow.compiler.mlir.tfr.python import test_utils
    from tensorflow.python.framework import load_library
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train_test.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    """Test for tfr mnist training example."""
    
    from absl.testing import parameterized
    
    from tensorflow.compiler.mlir.tfr.examples.mnist import mnist_train
    from tensorflow.python.distribute import combinations
    from tensorflow.python.distribute import strategy_combinations
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 03:38:45 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/examples/mnist/BUILD

        disable_v3 = True,  # Not needed. Save some resources and test time.
        python_version = "PY3",
        tags = [
            "no_cuda_asan",  # Not needed, and there were issues with timeouts.
            "no_oss",  # Avoid downloading mnist data set in oss.
            "nomultivm",  # Not needed. Save some resources and test time.
            "notap",  # The test is too long to run as part of llvm presubmits (b/173661843).
            "notpu",  # Takes too long (b/192305423)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 11:50:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/keras.py

    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v2 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common
    
    
    def mnist_model():
      """Creates a MNIST model."""
      model = tf.keras.models.Sequential()
      model.add(tf.keras.layers.Flatten())
      model.add(tf.keras.layers.Dense(128, activation='relu'))
      model.add(tf.keras.layers.Dense(10, activation='softmax'))
      return model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #         "fallback_tensor_conversion_host.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "kernel_fallback_op_handler.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "mnist.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "runtime_fallback_op_handler.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    """Defines all the new composite ops used in the mnist example."""
    
    # pylint: disable=g-direct-tensorflow-import
    # pylint: disable=missing-function-docstring
    
    import os
    import sys
    
    from absl import app
    import tensorflow as tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/crypto/ecdh/nist.go

    	// invalid points and the point at infinity, and NewPrivateKey rejects
    	// invalid scalars and the zero value. BytesX returns an error for the point
    	// at infinity, but in a prime order group such as the NIST curves that can
    	// only be the result of a scalar multiplication if one of the inputs is the
    	// zero scalar or the point at infinity.
    
    	if boring.Enabled {
    		return boring.ECDH(local.boring, remote.boring)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/crypto/ecdh/ecdh.go

    	// constructed due to clamping; for NIST curves, it is rejected by
    	// NewPrivateKey.
    	privateKeyToPublicKey(*PrivateKey) *PublicKey
    }
    
    // PublicKey is an ECDH public key, usually a peer's ECDH share sent over the wire.
    //
    // These keys can be parsed with [crypto/x509.ParsePKIXPublicKey] and encoded
    // with [crypto/x509.MarshalPKIXPublicKey]. For NIST curves, they then need to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/crypto/elliptic/elliptic.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package elliptic implements the standard NIST P-224, P-256, P-384, and P-521
    // elliptic curves over prime fields.
    //
    // Direct use of this package is deprecated, beyond the [P224], [P256], [P384],
    // and [P521] values necessary to use [crypto/ecdsa]. Most other uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top