Skip to content
Open
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@ If you plan to use 🤗 Datasets with PyTorch (2.0+), TensorFlow (2.6+) or JAX (
🤗 Datasets is also well integrated with data frameworks like PyArrow, Pandas, Polars and Spark, which should be installed separately.

For more details on using the library with these frameworks, check the quick start page in the documentation: https://huggingface.co/docs/datasets/quickstart
## Quickstart

Load your first dataset in three lines of code:

```python
from datasets import load_dataset

dataset = load_dataset("imdb")
print(dataset["train"][0])


# Usage

Expand Down