I need some help to understand a failure
#1
by
Hartorn
- opened
Hi!
I'm Bazire, from the Giskard team.
We were trying to validate our dataset (giskardai/phare), and it is failing with some error
While trying to understand what was going on, we try to replicate locally, validating using
mlcroissant validate --jsonld "https://huggingface.co/api/datasets/giskardai/phare/croissant"
or using the same code as what it inside the validation library
import mlcroissant as mlc
dataset = mlc.Dataset(jsonld="https://huggingface.co/api/datasets/giskardai/phare/croissant")
record_sets = dataset.metadata.record_sets
for record_set in record_sets:
print(f"iterating over {record_set}")
print(record_set)
records = dataset.records(record_set=record_set.uuid)
Both are passing locally, without any issue.
Can you help us understand what's going on ?