trojblue commited on
Commit
929d03f
·
verified ·
1 Parent(s): 7914e2a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -149,8 +149,10 @@ This dataset is a structured extraction of the [Million Song Subset](http://mill
149
  ## Usage
150
  - Load the dataset with Pandas:
151
  ```python
152
- import pandas as pd
153
- df = pd.read_parquet("hf://trojblue/million-song-subset")
 
 
154
  ```
155
  - Explore and analyze various musical attributes easily.
156
 
 
149
  ## Usage
150
  - Load the dataset with Pandas:
151
  ```python
152
+ from datasets import load_dataset
153
+
154
+ # Login using e.g. `huggingface-cli login` to access this dataset
155
+ ds = load_dataset("trojblue/million-song-subset")
156
  ```
157
  - Explore and analyze various musical attributes easily.
158