Skip to content

Commit

Permalink
Merge pull request #4 from DiMiGi/patch-1
Browse files Browse the repository at this point in the history
used wrong index when loading internal delay from saved NN in function loadNN
  • Loading branch information
yabata authored Jun 20, 2017
2 parents 49e6608 + 707068f commit a3445fd
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 a3445fd

Please sign in to comment.