Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 285 for weights (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

    # Mapping of signature def key -> SignatureDef.
    _SignatureDefMap = Mapping[str, meta_graph_pb2.SignatureDef]
    
    # Default minimum number of elements in the weights for them to be quantized
    # during dynamic range quantization (DRQ) and weight-only quantization.
    _DYNAMIC_RANGE_DEFAULT_MIN_NUM_ELEMENTS_FOR_WEIGHTS = 1024
    
    
    def _is_qat_saved_model(saved_model_path: str):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // broadcasting support. This needs to be run immediately after HLO->TF
      // legalization; otherwise other passes like `ConvertTFBroadcastTo` will
      // constant fold the newly generated TF broadcast ops and materialize the
      // weights.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateBroadcastFoldPass());
    
      // Canonicalization after TF legalization.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            if a sidecar is present in the workload.
                          type: string
                        weight:
                          description: The load balancing weight associated with the endpoint.
                          maximum: 4294967295
                          minimum: 0
                          type: integer
                      type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

          ValueReference<K, V> previous = entry.getValueReference();
          int weight = map.weigher.weigh(key, value);
          checkState(weight >= 0, "Weights must be non-negative");
    
          ValueReference<K, V> valueReference =
              map.valueStrength.referenceValue(this, entry, value, weight);
          entry.setValueReference(valueReference);
          recordWrite(entry, weight, now);
          previous.notifyNewValue(value);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                            if a sidecar is present in the workload.
                          type: string
                        weight:
                          description: The load balancing weight associated with the endpoint.
                          maximum: 4294967295
                          minimum: 0
                          type: integer
                      type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

          ValueReference<K, V> previous = entry.getValueReference();
          int weight = map.weigher.weigh(key, value);
          checkState(weight >= 0, "Weights must be non-negative");
    
          ValueReference<K, V> valueReference =
              map.valueStrength.referenceValue(this, entry, value, weight);
          entry.setValueReference(valueReference);
          recordWrite(entry, weight, now);
          previous.notifyNewValue(value);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

            enable_per_channel_quantized_weight_ &&
                IsWeightPerChannelQuantized(quantization_method));
      }
    
      // Returns true if the quantization method indicates per-channel quantization
      // for convolution weights. This method specifically matches a quantization
      // dimension of 3 for the input index 1 or unspecified quantization dimension
      // for the input index 1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                type: integer
                              weight:
                                default: 1
                                description: |-
                                  Weight specifies the proportion of requests forwarded to the referenced
                                  backend. This is computed as weight/(sum of all weights in this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  9. RELEASE.md

            `tf.keras.mixed_precision.experimental.LossScaleOptimizer`, the weights
            of the `DynanmicLossScale` are copied into the `LossScaleOptimizer`
            instead of being reused. This means modifying the weights of the
            `DynamicLossScale` will no longer affect the weights of the
            LossScaleOptimizer, and vice versa.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                // input. Only int8 weight is supported for now.
                inputs.push_back(dq_op.getOperand());
                is_operand_or_result_modified = true;
              } else {
                // Otherwise, it's the case where the operand is activations or the
                // quantizing_op is non-supported/weight-only.
                inputs.push_back(operand);
              }
            } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top