https://github.com/kenkov/seq2seq
Raw File
Tip revision: 446045212ac8c12535cd1f2113e9ba37a5306207 authored by Noriyuki Abe on 26 February 2016, 21:45:45 UTC
Merge branch 'dev'
Tip revision: 4460452
test.ini
# [DEFAULT]
# START_SYMBOL = <S>
# END_SYMBOL = </S>
# UNK_SYMBOL = <UNK>
# # defautl separator is \t
# SEPARATOR = \t

[CONFIG]
model_dir = model_test
sent_file = corpus_test/sent.char.txt
conv_file = corpus_test/conv.char.txt
dict_file = model_test/conv.dict

word2vec_init = True
word2vec_model_file = model_test/word2vec.model

min_freq = 0
n_units = 50
epoch_size = 1000
batch_size = 2
dropout = True
back to top