Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for filterValue (0.26 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        Value filter_value = op.getOperand(1);
        Operation* filter_op = filter_value.getDefiningOp();
        auto filter_uniform_quantized_type =
            GetElementType(filter_value).cast<UniformQuantizedPerAxisType>();
        auto filter_constant_value_attr = cast<DenseIntElementsAttr>(
            cast<stablehlo::ConstantOp>(filter_value.getDefiningOp()).getValue());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       * Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> Map<K, V> filterValues(
          Map<K, V> unfiltered, final Predicate<? super V> valuePredicate) {
        return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

       * Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> Map<K, V> filterValues(
          Map<K, V> unfiltered, final Predicate<? super V> valuePredicate) {
        return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          has_bias: bool,
          has_batch_norm: bool,
          target_opset: quant_opts_pb2.OpSet,
      ):
        class ConvModel(module.Module):
    
          def __init__(self):
            self.filter_value = np.random.uniform(
                low=-0.5, high=0.5, size=(2, 3, 3, 2)
            ).astype('f4')
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top