Skip to content
Snippets Groups Projects
Commit 97f71771 authored by Laura Christine Kühle's avatar Laura Christine Kühle
Browse files

Fixed type for log prints.

parent fa265fc0
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
@author: Soraya Terrab (sorayaterrab), Laura C. Kühle
TODO: Improve '_generate_cell_data'
TODO: Fix type for log prints -> Done
"""
......@@ -148,7 +149,7 @@ class TrainingDataGenerator(object):
count += 1
if count % 100 == 0:
print(count + ' samples completed.')
print(str(count) + ' samples completed.')
# Shuffle input data
order = np.random.permutation(num_samples)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment