We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Getting started page, Weights, activations, biases quantization section, I found an error.
Weights, activations, biases quantization
class QuantWeightActBiasLeNet(Module): def __init__(self): super(LowPrecisionLeNet, self).__init__()
Should be:
class QuantWeightActBiasLeNet(Module): def __init__(self): super(QuantWeightActBiasLeNet, self).__init__()
The text was updated successfully, but these errors were encountered:
Thanks! It will be fixed for the next release
Sorry, something went wrong.
capnramses
No branches or pull requests
In Getting started page,
Weights, activations, biases quantization
section, I found an error.Should be:
The text was updated successfully, but these errors were encountered: