Skip to content
Snippets Groups Projects
Commit 33bc60ba authored by paul_pvc's avatar paul_pvc
Browse files

Fixed size argument not used

parent a8a90b62
No related branches found
No related tags found
No related merge requests found
......@@ -14,9 +14,9 @@ def buildSampleFromPath(path1, path2, size=0):
S = []
# getMaxSize(path1, path2)
S += fetch_images_to_dict(path1, y_true_class=1)
S += fetch_images_to_dict(path1, size, y_true_class=1)
S += fetch_images_to_dict(path2, y_true_class=0)
S += fetch_images_to_dict(path2,size, y_true_class=0)
return S
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment