Skip to content

Commit

Permalink
Incorrect delay on dIn
Browse files Browse the repository at this point in the history
It wasn't loading correctly the NN when the internal delay was set it
  • Loading branch information
DiMiGi authored Jun 16, 2017
1 parent 49e6608 commit 707068f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyrenn.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ def loadNN(filename):
if data[5] == ['','']:
dIntern = []
else:
dIntern = list(np.array(data[3],dtype=np.int))
dIntern = list(np.array(data[5],dtype=np.int))

#read output delays dIOut
if data[7] == ['','']:
Expand Down

0 comments on commit 707068f

Please sign in to comment.