本文簡要介紹python語言中 torch.quantization.convert
的用法。
用法:
torch.quantization.convert(module, mapping=None, inplace=False, remove_qconfig=True, convert_custom_config_dict=None)
module-準備和校準的模塊
mapping-從源模塊類型映射到目標模塊類型的字典,可以被覆蓋以允許交換用戶定義的模塊
inplace-就地進行模型轉換,原始模塊發生突變
convert_custom_config_dict-轉換函數的自定義配置字典
通過在目標模塊類上調用
from_float
方法,根據mapping
將輸入模塊中的子模塊轉換為不同的模塊。如果 remove_qconfig 設置為 True,則在最後刪除 qconfig。# Example of convert_custom_config_dict: convert_custom_config_dict = { # user will manually define the corresponding quantized # module class which has a from_observed class method that converts # observed custom module to quantized custom module "observed_to_quantized_custom_module_class": { ObservedCustomModule: QuantizedCustomModule } }
參數:
相關用法
- Python PyTorch conv_transpose3d用法及代碼示例
- Python PyTorch conv2d用法及代碼示例
- Python PyTorch conv1d用法及代碼示例
- Python PyTorch conv3d用法及代碼示例
- Python PyTorch conv_transpose2d用法及代碼示例
- Python PyTorch conv_transpose1d用法及代碼示例
- Python PyTorch constant_用法及代碼示例
- Python PyTorch context用法及代碼示例
- Python PyTorch cond用法及代碼示例
- Python PyTorch conj_physical用法及代碼示例
- Python PyTorch conj用法及代碼示例
- Python PyTorch column_stack用法及代碼示例
- Python PyTorch cov用法及代碼示例
- Python PyTorch cos用法及代碼示例
- Python PyTorch compute_deltas用法及代碼示例
- Python PyTorch combinations用法及代碼示例
- Python PyTorch collect_all用法及代碼示例
- Python PyTorch count_nonzero用法及代碼示例
- Python PyTorch cosh用法及代碼示例
- Python PyTorch cosine_similarity用法及代碼示例
- Python PyTorch complex用法及代碼示例
- Python PyTorch corrcoef用法及代碼示例
- Python PyTorch copysign用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch cumprod用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.quantization.convert。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。