Paolify/RVC_4
0
1# Copyright (c) Facebook, Inc. and its affiliates.2# All rights reserved.3#4# This source code is licensed under the license found in the5# LICENSE file in the root directory of this source tree.6 7# flake8: noqa8"""9This package implements different quantization strategies:10 11- `diffq.uniform.UniformQuantizer`: classic uniform quantization over n bits.12- `diffq.diffq.DiffQuantizer`: differentiable quantizer based on scaled noise injection.13 14Also, do check `diffq.base.BaseQuantizer` for the common methods of all Quantizers.15"""16 17from .uniform import UniformQuantizer18from .diffq import DiffQuantizer19 