Skip to content
New issue

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

Adding problem #5

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
82095fc
Saved some logs
madhu-aithal Dec 3, 2019
e407177
Merge remote-tracking branch 'upstream/master'
madhu-aithal Dec 4, 2019
a511b6b
Some scripts and saves added
madhu-aithal Dec 5, 2019
5682b3e
Updated code for not updating the gradients for gamma
madhu-aithal Dec 5, 2019
a9e5bad
Some changes
Dec 5, 2019
0514f47
Merge branch 'master' of https://github.com/madhu-aithal/nnRNN_release
Dec 5, 2019
20d3add
Added some shell scripts
madhu-aithal Dec 5, 2019
5e543d0
.
madhu-aithal Dec 5, 2019
09a2e31
Fixed some bugs in sMNIST
madhu-aithal Dec 5, 2019
71b0e92
New saves - adam optimizer, no gamma gradients
Dec 6, 2019
eb70291
Merge branch 'temp' of https://github.com/madhu-aithal/nnRNN_release …
Dec 6, 2019
a6d3b66
L1 loss and updated some more saves
madhu-aithal Dec 7, 2019
64a57a2
Organized scripts and added data for L1 loss for gamma regularization
madhu-aithal Dec 8, 2019
52622b2
Added code for adding problem
madhu-aithal Dec 9, 2019
ba94606
Updated plots notebook
madhu-aithal Dec 9, 2019
2335aae
fixed some bugs in language_task.py
madhu-aithal Dec 9, 2019
4af130d
Fixed a bug in adding problem
madhu-aithal Dec 10, 2019
9ae5be6
Added new plots
madhu-aithal Dec 10, 2019
549307a
Updated plotting code
madhu-aithal Dec 14, 2019
ea0689b
Updated Readme
madhu-aithal Dec 19, 2019
e56984b
Added .gitignore and fixed few bugs in utils.py and sMNIST.py
madhu-aithal Dec 19, 2019
205639e
Bug fixes in language_task.py
madhu-aithal Dec 22, 2019
2778e8e
Fixed bugs in language_task.py
madhu-aithal Dec 22, 2019
06131b7
Commented the loading of saved model in language_task.py and added in…
madhu-aithal Dec 22, 2019
3515a5d
Removed local path for data directory for PTB
madhu-aithal Dec 22, 2019
ab8711e
Added saves for adding problem and updated data generation code for a…
madhu-aithal Dec 23, 2019
3764198
Correctly added saves for adding problem and updated data generation …
madhu-aithal Dec 23, 2019
e0f1c7b
Removed saves in scripts directory
madhu-aithal Dec 23, 2019
46e8502
Updated code generation in adding_problem.py
madhu-aithal Dec 25, 2019
e888508
Added report and more saves for adding problem
madhu-aithal Jan 15, 2020
1e4771b
Removed unnecessary saves and added a comment in adding_problem.py
madhu-aithal Jan 16, 2020
48063c7
Using random_seed for torch.cuda.manual_seed
madhu-aithal Jan 16, 2020
ed2748d
Updated Readme and adding_problem.py
madhu-aithal Jan 19, 2020
36d829a
Added new saves
madhu-aithal Jan 19, 2020
a5554d3
Added new adding_problem.png
madhu-aithal Jan 19, 2020
3d5a2ea
Update Readme.md
madhu-aithal Jan 19, 2020
fef746b
Removed local saves
madhu-aithal Jan 19, 2020
cd419c1
Merge conflicts resolved
madhu-aithal Jan 19, 2020
8a0ab6a
Fetched the updates from upstream and merged with adding-problem branch
madhu-aithal Jan 19, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode
__pycache__/
output_logs/
.ipynb_checkpoints/
__pycache__/
*.out
Loading