在 Pytorch 中使用 int8 数据类型运行量化模型的最佳方法是什么?我知道在 pytorch 中我可以将张量定义为int8,但是,当我真正想使用 int8 时,我得到:
RuntimeError: _thnn_conv2d_forward is not implemented for type torch.CharTensor
所以我很困惑,当卷积等计算块不支持数据类型时,如何在 pytorch 中运行使用例如 int8 的量化模型?我正在使用 pytorch 版本1.0.1.post2。