File size: 1,458 Bytes
5177ddc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c9aaaa0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
dataset_info:
  features:
  - name: instruction
    dtype: string
  - name: input
    dtype: string
  - name: output
    dtype: string
  - name: history
    sequence:
      sequence: string
  splits:
  - name: train
    num_bytes: 32190662
    num_examples: 20202
  download_size: 15527256
  dataset_size: 32190662
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

### OAAST Selected Dataset

**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.

**Source:** [OAAST Selected on Hugging Face Datasets](https://huggingface.co/datasets/kimnt93/oaast-selected)

**Original Source:** [oasst1 on Hugging Face Datasets](https://huggingface.co/datasets/OpenAssistant/oasst1)

**License:** Please refer to the license information provided by the original source.

### Python Script to Download the Dataset

```python
from datasets import load_dataset

# Load the OAAST Selected dataset
dataset = load_dataset("kimnt93/oaast-selected")
```

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.

Please ensure you have the `datasets` library installed (`pip install datasets`) before running the script.

Let me know if you need any further assistance!