Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emrekgn committed Mar 27, 2018
1 parent eebcd49 commit 90006c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def load(self):

# 2. get processing functions that map str -> id
self.processing_word = get_processing_word(self.vocab_words,
self.vocab_chars, lowercase=True, chars=self.use_chars)
self.vocab_chars, lowercase=False, chars=self.use_chars)
self.processing_tag = get_processing_word(self.vocab_tags,
lowercase=False, allow_unk=False)

Expand Down Expand Up @@ -88,7 +88,7 @@ def load(self):
dropout = 0.5
batch_size = 10
lr_method = "sgd"
lr = 0.01
lr = 0.005
lr_decay = 1.0
clip = 5.0 # if negative, no clipping
nepoch_no_imprv = 999
Expand Down

0 comments on commit 90006c7

Please sign in to comment.