Skip to content

Commit

Permalink
tune embedding size
Browse files Browse the repository at this point in the history
  • Loading branch information
entron committed Apr 15, 2016
1 parent 944ea5f commit 200ec1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def __build_keras_model(self):
models = []

model_store = Sequential()
model_store.add(Embedding(1115, 50, input_length=1))
model_store.add(Reshape(dims=(50,)))
model_store.add(Embedding(1115, 10, input_length=1))
model_store.add(Reshape(dims=(10,)))
models.append(model_store)

model_dow = Sequential()
Expand Down

0 comments on commit 200ec1c

Please sign in to comment.