Update README.md
Browse files
README.md
CHANGED
@@ -22,3 +22,28 @@ configs:
|
|
22 |
- split: train
|
23 |
path: data/train-*
|
24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
- split: train
|
23 |
path: data/train-*
|
24 |
---
|
25 |
+
|
26 |
+
### OAAST Selected Dataset
|
27 |
+
|
28 |
+
**Description:** This dataset, OAAST Selected, is collected from the OpenAssistant project's oasst1 dataset. It contains selected samples from the oasst1 dataset for specific tasks.
|
29 |
+
|
30 |
+
**Source:** [OAAST Selected on Hugging Face Datasets](https://huggingface.co/datasets/kimnt93/oaast-selected)
|
31 |
+
|
32 |
+
**Original Source:** [oasst1 on Hugging Face Datasets](https://huggingface.co/datasets/OpenAssistant/oasst1)
|
33 |
+
|
34 |
+
**License:** Please refer to the license information provided by the original source.
|
35 |
+
|
36 |
+
### Python Script to Download the Dataset
|
37 |
+
|
38 |
+
```python
|
39 |
+
from datasets import load_dataset
|
40 |
+
|
41 |
+
# Load the OAAST Selected dataset
|
42 |
+
dataset = load_dataset("kimnt93/oaast-selected")
|
43 |
+
```
|
44 |
+
|
45 |
+
This Python script utilizes the `datasets` library from Hugging Face to download and access the OAAST Selected dataset. You can run this script in your Python environment to download the dataset.
|
46 |
+
|
47 |
+
Please ensure you have the `datasets` library installed (`pip install datasets`) before running the script.
|
48 |
+
|
49 |
+
Let me know if you need any further assistance!
|