Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 667 for minval (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        """
        in_placeholder = array_ops.placeholder(dtypes.float32, shape=input_shape)
    
        filters = random_ops.random_uniform(
            shape=filter_shape, minval=-1.0, maxval=1.0
        )
        if use_variable_for_filter:
          filters = variables.Variable(filters)
    
        output_tensor = nn_ops.conv2d(
            in_placeholder,
            filters,
            strides=[1, 1, 2, 1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    smaller than the range of the output (either `2^32` or `2^64`).
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      Used to test where the quantizer has to handle multiple signatures.
      """
    
      def __init__(self):
        self.matmul_filters = random_ops.random_uniform(
            shape=(4, 3), minval=-1.0, maxval=1.0
        )
        self.conv_filters = np.random.uniform(
            low=-10, high=10, size=(2, 3, 3, 2)
        ).astype('f4')
    
      @def_function.function(
          input_signature=[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output shape =
          ops::RandomUniformInt(root.WithOpName("shape"), shape_shape,
                                ops::Const(root.WithOpName("minval"), 1),
                                ops::Const(root.WithOpName("maxval"), 20));
      Output reshape_input =
          ops::Placeholder(root.WithOpName("reshape_input"), DT_FLOAT,
                           ops::Placeholder::Shape(TensorShape({500, 500})));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    smaller than the range of the output (either `2^32` or `2^64`).
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/testdata/manual.go

    // Copyright 2024 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.
    
    // This file is tested when running "go test -run Manual"
    // without source arguments. Use for one-off debugging.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 17:42:47 UTC 2024
    - 285 bytes
    - Viewed (0)
  7. manifests/profiles/minimal.yaml

    # The minimal profile will install just the core control plane
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 11 05:41:16 UTC 2020
    - 216 bytes
    - Viewed (0)
  8. src/go/types/testdata/manual.go

    // Copyright 2024 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.
    
    // This file is tested when running "go test -run Manual"
    // without source arguments. Use for one-off debugging.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 17:42:47 UTC 2024
    - 285 bytes
    - Viewed (0)
  9. src/runtime/mfinal.go

    Anuraag Agrawal <******@****.***> 1717647866 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    		padding-top: 0;
    		padding-bottom: 0;
    	}
    }
    
    @media screen and (min-width: 84.375rem) {
    	.ui-logos .ui-logo {
    		box-shadow: 0 6px 15px 1px rgba(0, 0, 0, 0.56);
    	}
    }
    
    /* User Manual Home */
    .technology-logos,
    .ui-logos {
    	display: flex;
    	flex-direction: row;
    	flex-wrap: wrap;
    	justify-content: space-around;
    }
    
    .technology-logo,
    .ui-logo {
    	flex: 0 1 auto;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top