-
Notifications
You must be signed in to change notification settings - Fork 592
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
Hugging Face Hub Upgrades #4231
Conversation
Important Auto Review SkippedAuto reviews are disabled on base/target branches other than the default branch. Please add the base/target branch pattern to the list of additional branches to be reviewed in the settings. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
@jacobmarks generally LGTM, just a couple small comments before merging
fiftyone/utils/huggingface.py
Outdated
"tags": tags, | ||
} | ||
|
||
if min_fiftyone_version is not None: | ||
if not _validate_fiftyone_version(min_fiftyone_version): |
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.
I would recommend removing this validation as version numbers could actually contain letters and stuff (not usual, but could, eg release candidates).
How about just providing an example in the docstring?
min_fiftyone_version (None): the minimum version of FiftyOne required,
if applicable. For example ``"0.23"``
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.
Very nice! Left one comment for your consideration 😄
fiftyone/utils/huggingface.py
Outdated
|
||
dataset_type_name = config._format.strip() | ||
|
||
if dataset_type_name == "FiftyOneDataset": |
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.
Would it make sense to download the images separately only if max_samples
was provided?
I'm wondering if this might be less efficient:
hfh.snapshot_download(**init_download_kwargs, allow_patterns=[very, long, list, of patterns])
than this:
hfh.snapshot_download(**init_download_kwargs)
preview_path
arg topush_to_hub()
, allowing for passing a screenshot or video to the dataset cardFiftyOneDataset
formatted datasetsHow is this patch tested? If it is not, please explain why.
(Details)
Release Notes
Is this a user-facing change that should be mentioned in the release notes?
notes for FiftyOne users.
(Details in 1-2 sentences. You can just refer to another PR with a description
if this PR is part of a larger change.)
What areas of FiftyOne does this PR affect?
fiftyone
Python library changes