Skip to content

Commit

Permalink
Update data_collection.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yaswanthsai002 authored Sep 28, 2023
1 parent 2303614 commit f8e44dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/data_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
data.append(x + "_visibility")
data.append("NAME_OF_THE_ASANA")

path = os.path.join('DATASET', 'TRAIN')
path = 'app/DATASET/TRAIN'

landmarks = []

Expand All @@ -38,7 +38,7 @@
except Exception as e:
print(e)

file = open("Asana.csv","w")
file = open("app/Asana.csv","w")
writer = csv.writer(file)
writer.writerow(data)
writer.writerows(landmarks)
Expand Down

0 comments on commit f8e44dc

Please sign in to comment.