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
I try to give a vector of lrs per layer but it does not work. Here is my code;
local learningRates = {} local params, gradParams = model:parameters() print(params[1]:size()) for i=1, #params do learningRates[i] = opt.LR end print("setting LR") learningRates[#params] = opt.topLayerLR -- print(learningRates) learningRates = torch.Tensor(learningRates):reshape(#params,1) ocal params, gradParams = model:parameters() print(params[1]:size()) for i=1, #params do learningRates[i] = opt.LR end print("setting LR") learningRates[#params] = opt.topLayerLR -- print(learningRates) learningRates = torch.Tensor(learningRates):reshape(#params,1)
Could you help me how to use learningRates in a propoer way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to give a vector of lrs per layer but it does not work. Here is my code;
Could you help me how to use learningRates in a propoer way?
The text was updated successfully, but these errors were encountered: