From ad73b4264cfac0beb606c523852c787df8e50d1b Mon Sep 17 00:00:00 2001 From: Sylvain Lesage Date: Mon, 28 Jul 2025 11:08:40 -0400 Subject: [PATCH] fix broken link --- docs/hub/datasets-polars.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hub/datasets-polars.md b/docs/hub/datasets-polars.md index 40ecbb7d9..9e19972a2 100644 --- a/docs/hub/datasets-polars.md +++ b/docs/hub/datasets-polars.md @@ -28,7 +28,7 @@ pl.read_parquet("hf://datasets/roneneldan/TinyStories/data/train-00000-of-00004- -Polars provides two APIs: a lazy API (`scan_parquet`) and an eager API (`read_parquet`). We recommend using the eager API for interactive workloads and the lazy API for performance as it allows for better query optimization. For more information on the topic, check out the [Polars user guide](https://docs.pola.rs/user-guide/concepts/lazy-vs-eager/). +Polars provides two APIs: a lazy API (`scan_parquet`) and an eager API (`read_parquet`). We recommend using the eager API for interactive workloads and the lazy API for performance as it allows for better query optimization. For more information on the topic, check out the [Polars user guide](https://docs.pola.rs/user-guide/concepts/lazy-api/#when-to-use-which).