Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Jun 2, 2017
1 parent bb853aa commit 55bc7c1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion thinc/neural/_classes/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ def from_bytes(self, bytes_data):
if hasattr(layer, '_mem'):
if b'seed' in weights[i]:
layer.seed = weights[i][b'seed']
print(weights[i][b'dims'])
for dim, value in weights[i][b'dims'].items():
setattr(layer, dim, value)
for param in weights[i][b'params']:
Expand Down

0 comments on commit 55bc7c1

Please sign in to comment.