Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for miny (0.09 sec)

  1. RELEASE.md

    *   Various performance improvements, especially for RNNs and convolutions
    *   Many bugfixes
    *   Nightly builds, tutorial tests, many test improvements
    *   New examples: transfer learning and deepdream ipython notebook
    *   Added tutorials, many documentation fixes.
    
    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Before quantization, `min` and `max` values are adjusted with the following
    logic.
    It is suggested to have `min <= 0 <= max`. If `0` is not in the range of values,
    the behavior can be unexpected:
    
    *   If `0 < min < max`: `min_adj = 0` and `max_adj = max - min`.
    *   If `min < max < 0`: `min_adj = min - max` and `max_adj = 0`.
    *   If `min <= 0 <= max`: `scale = (max - min) / (2^num_bits - 1) `,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apps__v1_openapi.json

          },
          "io.k8s.api.apps.v1.StatefulSet": {
            "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n  - Network: A single stable DNS and hostname.\n  - Storage: As many VolumeClaims as requested.\n\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    			}, {
    				Type: core.LimitTypePersistentVolumeClaim,
    				Max:  getStorageResourceList("10Gi"),
    				Min:  getStorageResourceList("5Gi"),
    			}},
    		},
    	}, {
    		name: "pvc-min-only",
    		spec: core.LimitRangeSpec{
    			Limits: []core.LimitRangeItem{{
    				Type: core.LimitTypePersistentVolumeClaim,
    				Min:  getStorageResourceList("5Gi"),
    			}},
    		},
    	}, {
    		name: "pvc-max-only",
    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