akommula commited on
Commit
1f6ec21
·
1 Parent(s): 6d8cc78

Fixed pathing for download

Browse files
Files changed (1) hide show
  1. openpi_v2.py +1 -1
openpi_v2.py CHANGED
@@ -152,7 +152,7 @@ class OpenpiV2(datasets.GeneratorBasedBuilder):
152
  logger.info("generating examples from = %s", filepath)
153
 
154
  with open(filepath) as f:
155
- openpi_v2 = json.loads(f)
156
  print(openpi_v2)
157
 
158
  for id_ in openpi_v2:
 
152
  logger.info("generating examples from = %s", filepath)
153
 
154
  with open(filepath) as f:
155
+ openpi_v2 = json.load(f)
156
  print(openpi_v2)
157
 
158
  for id_ in openpi_v2: