Skip to content

Commit

Permalink
Change default dim (facebookresearch#134)
Browse files Browse the repository at this point in the history
* Update README.md

* Update args.cpp
  • Loading branch information
ledw authored Mar 15, 2018
1 parent 9c9be25 commit 75d9f7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ and achieved 96.40% accuracy on an average of 5 runs.
-saveEveryEpoch save intermediate models after each epoch [false]
-saveTempModel save intermediate models after each epoch with an unique name including epoch number [false]
-lr learning rate [0.01]
-dim size of embedding vectors [10]
-dim size of embedding vectors [100]
-epoch number of epochs [5]
-maxTrainTime max train time (secs) [8640000]
-negSearchLimit number of negatives sampled [50]
Expand Down
2 changes: 1 addition & 1 deletion src/utils/args.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Args::Args() {
dropoutLHS = 0.0;
dropoutRHS = 0.0;
p = 0.5;
dim = 10;
dim = 100;
epoch = 5;
ws = 5;
maxTrainTime = 60*60*24*100;
Expand Down

0 comments on commit 75d9f7d

Please sign in to comment.