Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
a0405u committed Dec 28, 2020
1 parent fd0da58 commit be3604d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lab3/lab3.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def load_images(images_path):
timest = time.time()

images = []

paths = os.listdir(images_path)

for path in paths:
Expand All @@ -60,6 +60,9 @@ def load_classes(path):

classes=[]

print(classes[0])
print(classes[1])

with open(path, 'r') as fd:
reader = csv.reader(fd)
for row in reader:
Expand Down

0 comments on commit be3604d

Please sign in to comment.