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 3 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 biggest number of datasets (immediate access to all the datasets on HF Hub).

* The library functionality is independent of the dataset, so the user can use any dataset available on HF Hub, which means that others can immediately benefit from the dataset you added.

* Easily achieved reproducibility across different projects because of the single source of the dataset.

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

* Dynamism of the partitioning schemes applicable to any dataset (customizable levels of 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