alkzar90 commited on
Commit
53658ca
1 Parent(s): 4655bd6

Update CC6204-Hackaton-Cub-Dataset.py

Browse files
Files changed (1) hide show
  1. CC6204-Hackaton-Cub-Dataset.py +1 -1
CC6204-Hackaton-Cub-Dataset.py CHANGED
@@ -22,7 +22,7 @@ _URLS = {
22
 
23
  # Create id-to-label dictionary using the classes file
24
  _ID2LABEL = {}
25
- with open("https://huggingface.co/datasets/alkzar90/CC6204-Hackaton-Cub-Dataset/raw/main/data/classes.txt", "r") as f:
26
  for row in f.read().rsplit("\n"):
27
  if row != '':
28
  idx, label = row.split(" ")
 
22
 
23
  # Create id-to-label dictionary using the classes file
24
  _ID2LABEL = {}
25
+ with open("./data/classes.txt", "r") as f:
26
  for row in f.read().rsplit("\n"):
27
  if row != '':
28
  idx, label = row.split(" ")