This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- suppose you have a model called model | |
lrs_model = model:clone() | |
lrs = lrs_model:getParameters() | |
lrs:fill(1) -- setting the base learning rate to 1 | |
-- now lets set the learning rate factor of the bias of module 5 to 2 | |
lrs_model:get(5).bias:fill(2) | |
-- same thing for the weights of module 2, let's set them to 3 | |
lrs_model:get(2).weight:fill(3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# change prefix to Ctrl-a (like in gnu-screen) | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# shell | |
set -g default-command /bin/zsh | |
set -g default-shell /bin/zsh |