Skip to content
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

chore(deps): update dependency datasets to v2 - autoclosed #3

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 31, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
datasets ==1.11.0 -> ==2.21.0 age adoption passing confidence

Release Notes

huggingface/datasets (datasets)

v2.21.0

Compare Source

Features

What's Changed

New Contributors

Full Changelog: huggingface/datasets@2.20.0...2.21.0

v2.20.0

Compare Source

Important
Datasets features
  • [Resumable IterableDataset] Add IterableDataset state_dict by @​lhoestq in https://github.com/huggingface/datasets/pull/6658
    • checkpoint and resume an iterable dataset (e.g. when streaming):

      >>> iterable_dataset = Dataset.from_dict({"a": range(6)}).to_iterable_dataset(num_shards=3)
      >>> for idx, example in enumerate(iterable_dataset):
      ...     print(example)
      ...     if idx == 2:
      ...         state_dict = iterable_dataset.state_dict()
      ...         print("checkpoint")
      ...         break
      >>> iterable_dataset.load_state_dict(state_dict)
      >>> print(f"restart from checkpoint")
      >>> for example in iterable_dataset:
      ...     print(example)

      Returns:

      {'a': 0}
      {'a': 1}
      {'a': 2}
      checkpoint
      restart from checkpoint
      {'a': 3}
      {'a': 4}
      {'a': 5}
      
General improvements and bug fixes
New Contributors

Full Changelog: huggingface/datasets@2.19.0...2.20.0

v2.19.2

Compare Source

Bug fixes

Full Changelog: huggingface/datasets@2.19.1...2.19.2

v2.19.1

Compare Source

Bug fixes

Full Changelog: huggingface/datasets@2.19.0...2.19.1

v2.19.0

Compare Source

Dataset Features
General improvements and bug fixes
New Contributors

Full Changelog: huggingface/datasets@2.18.0...2.19.0

v2.18.0

Compare Source

Dataset features

General improvements and bug fixes

New Contributors

Full Changelog: huggingface/datasets@2.17.1...2.18.0

v2.17.1

Compare Source

Bug Fixes

Full Changelog: huggingface/datasets@2.17.0...2.17.1

v2.17.0

Compare Source

Dataset Features

General improvements and bug fixes

New Contributors

Full Changelog: huggingface/datasets@2.16.1...2.17.0

v2.16.1

Compare Source

Bug fixes

Full Changelog: huggingface/datasets@2.16.0...2.16.1

v2.16.0

Compare Source

Security features

  • Add trust_remote_code argument by @​lhoestq in https://github.com/huggingface/datasets/pull/6429
    • Some Hugging Face datasets contain custom code which must be executed to correctly load the dataset. The code can be inspected in the repository content at https://hf.co/datasets/<repo_id>. A warning is shown to let the user know about the custom code, and they can avoid this message in future by passing the argument trust_remote_code=True.
    • Passing trust_remote_code=True will be mandatory to load these datasets from the next major release of datasets.
    • Using the environment variable HF_DATASETS_TRUST_REMOTE_CODE=0 you can already disable custom code by default without waiting for the next release of datasets
  • Use parquet export if possible by @​lhoestq in https://github.com/huggingface/datasets/pull/6448
    • This allows loading most old datasets based on custom code

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/datasets-2.x branch 6 times, most recently from 50bec59 to 7a5dc16 Compare August 31, 2022 22:59
@renovate renovate bot force-pushed the renovate/datasets-2.x branch 2 times, most recently from 4b7972f to d1e2755 Compare September 21, 2022 17:45
@renovate
Copy link
Author

renovate bot commented Mar 18, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@renovate renovate bot force-pushed the renovate/datasets-2.x branch from d1e2755 to d900c8c Compare March 22, 2023 15:50
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from d900c8c to 511a87c Compare March 30, 2023 07:59
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 511a87c to 947d9a3 Compare May 29, 2023 20:00
@renovate renovate bot force-pushed the renovate/datasets-2.x branch 2 times, most recently from 8a255d0 to 9ab2d79 Compare June 23, 2023 02:08
@renovate renovate bot force-pushed the renovate/datasets-2.x branch 3 times, most recently from 310e073 to 5616521 Compare August 1, 2023 01:49
@renovate renovate bot force-pushed the renovate/datasets-2.x branch 2 times, most recently from 7a16221 to b1a413f Compare August 9, 2023 05:30
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from b1a413f to 7b54f4a Compare September 7, 2023 17:53
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 7b54f4a to 13b28d6 Compare October 24, 2023 02:48
@renovate renovate bot force-pushed the renovate/datasets-2.x branch 2 times, most recently from 670c314 to 41a44d9 Compare November 16, 2023 20:25
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 41a44d9 to 00b14b1 Compare December 23, 2023 02:43
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 00b14b1 to d259047 Compare December 31, 2023 08:32
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from d259047 to e7f8d1a Compare February 10, 2024 02:57
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from e7f8d1a to 60955ef Compare February 20, 2024 02:17
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 60955ef to c66805b Compare March 2, 2024 05:05
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from c66805b to 0cf0731 Compare April 19, 2024 08:59
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 0cf0731 to 2ff51ca Compare May 8, 2024 05:31
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 2ff51ca to e40717c Compare June 3, 2024 12:00
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from e40717c to 7ab5538 Compare June 15, 2024 05:33
@renovate renovate bot force-pushed the renovate/datasets-2.x branch from 7ab5538 to 9271aa7 Compare August 15, 2024 02:54
@renovate renovate bot changed the title chore(deps): update dependency datasets to v2 chore(deps): update dependency datasets to v2 - autoclosed Sep 11, 2024
@renovate renovate bot closed this Sep 11, 2024
@renovate renovate bot deleted the renovate/datasets-2.x branch September 11, 2024 20:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants