-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle local data. #420
Handle local data. #420
Conversation
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
elif file_type == FileTypes.PARQUET: | ||
return pd.read_parquet(file) | ||
df = pd.read_parquet(file) | ||
else: | ||
raise NotImplementedError() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add a message, something like "File format XXX no supported"? That's less cryptic, and people know what to ask for.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in another PR (1d2ccf9).
Add a warning when the local data does not exist.
Save the data locally.
Encoding formats are in a select box.
Download files in data/ for Titanic
Use python-magic to guess the file type.
Add info on RecordSets.
Allow to re-trigger the dataset generation.
Gamify the experience with a percentage of completion.