Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fake_quant_with_min_max_vars_per_channel (0.41 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      }];
    
      let description = [{
        Given a const min, max, num_bits and narrow_range attribute, applies the
        same per axis uniform quantization simulation as is done by the TensorFlow
        fake_quant_with_min_max_vars_per_channel op. See the fakeQuantAttrsToType()
        utility method and the quant-convert-simulated-quantization pass for further
        details.
      }];
    
      let arguments = (ins
        F32Tensor:$inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

      }];
    
      let description = [{
        Given a const min, max, num_bits and narrow_range attribute, applies the
        same per axis uniform quantization simulation as is done by the TensorFlow
        fake_quant_with_min_max_vars_per_channel op. See the fakeQuantAttrsToType()
        utility method and the quant-convert-simulated-quantization pass for further
        details.
      }];
    
      let arguments = (ins
        F32Tensor:$inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            )
            filter_max = array_ops.identity(
                array_ops.constant([0.5, 0.5], dtype=dtypes.float32)
            )
            q_filter = array_ops.fake_quant_with_min_max_vars_per_channel(
                filter_tensor, filter_min, filter_max, num_bits=8, narrow_range=True
            )
            bias = array_ops.constant([0.1, 0.2], dtype=dtypes.float32)
            scale, offset = [1.0] * 2, [0.5] * 2
    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. RELEASE.md

            `tf.quantization.fake_quant_with_min_max_args_gradient`,
            `tf.quantization.fake_quant_with_min_max_vars`,
            `tf.quantization.fake_quant_with_min_max_vars_gradient`,
            `tf.quantization.fake_quant_with_min_max_vars_per_channel`,
            `tf.quantization.fake_quant_with_min_max_vars_per_channel_gradient`.
        *   New endpoints in tf.strings namespace: `tf.strings.join` (corresponds to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top