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

docs(datasets) Add info about distinguishing features of Flower Datasets #3903

Merged
merged 5 commits into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions datasets/doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,29 @@ How To Use the library
----------------------
Learn how to use the ``flwr-datasets`` library from the :doc:`tutorial-quickstart` examples .

Distinguishing Features
-----------------------
What makes Flower Datasets stand out from other libraries?

* Access to the largest online repository of datasets:

* The library functionality is independent of the dataset, so you can use any dataset available on [🤗Hugging Face Datasets](https://huggingface.co/datasets), which means that others can immediately benefit from the dataset you added.

* Out-of-the-box reproducibility across different projects.

* Access to naturally dividable datasets (with some notion of id) and datasets typically used in centralized ML that need partitioning.

* Customizable levels of dataset heterogeneity:

* Each ``Partitioner`` takes arguments that allow you to customize the partitioning scheme to your needs.

* Partitioning can also be applied to the dataset with naturally available division.

* Flexible and open for extensions API.

* New custom partitioning schemes (``Partitioner`` subclasses) integrated with the whole ecosystem.


Join the Flower Community
-------------------------

Expand Down