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
The doc intro describes this NN - we should make it a proper example, and unit test/benchmark it
We'll make a simple DNN with vrelu3 activations, as in link
vrelu3
# Initialize the model using nn.Sequential model = nn.Sequential(OrderedDict([ ('fc1', nn.Linear(784, 256)), ('activation1', vrelu3), ('fc2', nn.Linear(256, 128)), ('bn2', nn.BatchNorm1d(num_features=128)), ('activation2', vrelu3), ('dropout', nn.Dropout(0.3)), ('fc3', nn.Linear(128, 64)), ('bn3', nn.BatchNorm1d(num_features=64)), ('activation3', vrelu3), ('logits', nn.Linear(64, 10)), ('logsoftmax', nn.LogSoftmax(dim=1))])) # Run training train_model(model)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The doc intro describes this NN - we should make it a proper example, and unit test/benchmark it
We'll make a simple DNN with
vrelu3
activations, as in linkThe text was updated successfully, but these errors were encountered: