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 section 8.6: Concise Implementation of Recurrent Neural Networks #89

Merged
merged 23 commits into from
Mar 29, 2021
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
08595b2
Adding section 8.5, not finished yet
markbookk Mar 1, 2021
8f60f0f
Merge branch 'master' of https://github.com/markbookk/d2l-java into 8…
markbookk Mar 1, 2021
bac7d3b
Finishing section 8.5, still need to test
markbookk Mar 1, 2021
3d02ce4
Fixing bug in TimeMachineUtils.java, was using instead of on seqDat…
markbookk Mar 1, 2021
e52268b
Fixing memory problem by creating subNDManager and using it on all (o…
markbookk Mar 3, 2021
0e75537
Fixing bug in gradClipping
markbookk Mar 3, 2021
489061b
Fixing typo on previous commit
markbookk Mar 3, 2021
6605d4d
Changing epoch amount
markbookk Mar 3, 2021
be03b1e
Adding section 8.6: Consise Implemention of RNNs (still debugging res…
markbookk Mar 8, 2021
f4bc810
Updating .gitignore
markbookk Mar 9, 2021
d2f9bc9
Adding finished notebook; adding util functions and chan ging TimeMac…
markbookk Mar 9, 2021
122e8bf
Changing RNNModels to AbstractBlocks
markbookk Mar 10, 2021
7591ef4
Adding dense layer as a child block
markbookk Mar 10, 2021
616f5b1
Fixing bug (learning rate was not set appropiately), adding TimeMachi…
markbookk Mar 15, 2021
811c785
Merge remote-tracking branch 'upstream/master' into 8-6-rnn-concise
markbookk Mar 15, 2021
dfb7449
Changing HashMap to LinkedHashMap to keep order of dataset
markbookk Mar 15, 2021
0c470ad
Adding suggestions on previous section's code review and adding imple…
markbookk Mar 15, 2021
72ef66b
Changing state from NDArray to NDList
markbookk Mar 16, 2021
418645d
Changing type of RNNModel to generic to be able to be used with GRU a…
markbookk Mar 17, 2021
d71f4c7
Merging with master
markbookk Mar 19, 2021
888e4f6
Adding code review suggestions; changing mul to muli in gradientClipp…
markbookk Mar 24, 2021
9a302f2
Upgrading version to 0.11.0-snapshot of section 8.3 and adding depend…
markbookk Mar 24, 2021
f85c8f6
Updating rnn-scratch notebook to include changes of section 8.6
markbookk Mar 24, 2021
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@

.DS_Store
testoutput/
.ipynb_checkpoints/
Loading