Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
exp commit
Browse files Browse the repository at this point in the history
  • Loading branch information
okuchaiev committed Jan 25, 2017
1 parent 1f7f951 commit d98fb11
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion model_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ def __init__(self, num_units, input_size, initializer=None,
self._num_unit_shards = num_shards
self._num_proj_shards = num_shards
self._forget_bias = 1.0
self._factor_size = int(factor_size)
if factor_size:
self._factor_size = int(factor_size)
else:
self._factor_size = None
self._fnon_linearity = fnon_linearity

if num_proj:
Expand Down

0 comments on commit d98fb11

Please sign in to comment.