jmc255 commited on
Commit
a02ca6a
1 Parent(s): 32645eb

Update aphantasia_drawing_dataset.py

Browse files
Files changed (1) hide show
  1. aphantasia_drawing_dataset.py +5 -0
aphantasia_drawing_dataset.py CHANGED
@@ -146,6 +146,11 @@ class AphantasiaDrawingDataset(datasets.GeneratorBasedBuilder):
146
  return image
147
  return None
148
  print(filepath)
 
 
 
 
 
149
  with open(filepath, "rb") as subjects_file:
150
  subjects_data = pd.read_parquet(subjects_file)
151
  #idx = 0
 
146
  return image
147
  return None
148
  print(filepath)
149
+ try:
150
+ subjects_data = pd.read_parquet(subjects_file)
151
+ except:
152
+ print("onto something")
153
+
154
  with open(filepath, "rb") as subjects_file:
155
  subjects_data = pd.read_parquet(subjects_file)
156
  #idx = 0