Skip to content

Commit

Permalink
fix: issue #27
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Rajchl committed Jun 17, 2018
1 parent b44cf72 commit eac988d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -84,7 +84,7 @@ def _augment(img, lbl):
n_examples=n_examples,
classes=9)

for e in range(n_examples):
for e in range(len(images)):
yield {'features': {'x': images[e].astype(np.float32)},
'labels': {'y': lbl[e].astype(np.int32)},
'subject_id': subject_id}
Expand Down

0 comments on commit eac988d

Please sign in to comment.