Skip to content

Commit

Permalink
change param
Browse files Browse the repository at this point in the history
  • Loading branch information
ynqa committed Dec 8, 2020
1 parent f6c558a commit d0b729d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ func main() {
glove.BatchSize(10000),
glove.Dim(50),
glove.Goroutines(20),
glove.Initlr(0.01),
glove.Initlr(0.03),
glove.Iter(3),
glove.MinCount(10),
glove.MinCount(20),
glove.Solver(glove.Stochastic),
glove.Verbose(),
glove.Window(10),
Expand All @@ -119,9 +119,9 @@ func main() {
glove.BatchSize(10000),
glove.Dim(50),
glove.Goroutines(20),
glove.Initlr(0.01),
glove.Initlr(0.03),
glove.Iter(3),
glove.MinCount(10),
glove.MinCount(20),
glove.Solver(glove.AdaGrad),
glove.Verbose(),
glove.Window(10),
Expand All @@ -133,7 +133,7 @@ func main() {
lexvec.BatchSize(10000),
lexvec.Dim(50),
lexvec.Goroutines(20),
lexvec.Iter(1),
lexvec.Iter(3),
lexvec.MinCount(10),
lexvec.Relation(lexvec.PPMI),
lexvec.Verbose(),
Expand Down

0 comments on commit d0b729d

Please sign in to comment.