Default for layer_norm set to False

This commit is contained in:
Bernardo Henz 2020-08-18 13:22:01 -03:00 коммит произвёл Alexandre Lissy
Родитель 2fcba677bb
Коммит 1f54daf007
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -135,7 +135,7 @@ def create_flags():
# Geometry
f.DEFINE_integer('n_hidden', 2048, 'layer width to use when initialising layers')
f.DEFINE_boolean('layer_norm', True, 'wether to use layer-normalization after each fully-connected layer (except the last one)')
f.DEFINE_boolean('layer_norm', False, 'wether to use layer-normalization after each fully-connected layer (except the last one)')
# Initialization