alkzar90 commited on
Commit
73218c8
1 Parent(s): 808187d

Fix open parenthesis

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(_URLS["classes", "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(_URLS["classes"], "r") as f:
26
  for row in f.read().rsplit("\n"):
27
  if row != '':
28
  idx, label = row.split(" ")