File size: 587 Bytes
6eb9011
1e12018
 
6eb9011
9ba470e
4a5d987
9ba470e
 
1e12018
 
6eb9011
9ba470e
c505e83
 
 
 
 
 
 
 
 
 
 
 
 
f1e5a47
9ba470e
 
f1e5a47
 
 
 
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
---
language:
- ja
license: cc0-1.0
task_categories:
- text-generation
dataset_info:
  features:
  - name: text
    dtype: string
---

```
from datasets import load_dataset
ds=load_dataset("if001/oscar_2023_filtered")
ds['train']

---

Dataset({
    features: ['text'],
    num_rows: 312396
})
```

oscar 2023をfilterしたもの  
https://huggingface.co/datasets/oscar-corpus/OSCAR-2301


詳細はコードを参照  
https://github.com/if001/HojiChar_OSCAR_sample/blob/master/pre_filter.py#L163-L176  
https://github.com/if001/HojiChar_OSCAR_sample/blob/master/dedup_all.py#L81-L88