Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,54 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
- zero-shot-classification
|
6 |
+
- text-generation
|
7 |
+
tags:
|
8 |
+
- meme
|
9 |
+
language:
|
10 |
+
- zh
|
11 |
+
pretty_name: Kuochang Sensei Quotes
|
12 |
+
size_categories:
|
13 |
+
- <100
|
14 |
+
configs:
|
15 |
+
- config_name: default
|
16 |
+
data_files:
|
17 |
+
- split: train
|
18 |
+
path: kuochang_quotes.csv
|
19 |
+
---
|
20 |
+
# Cooking Master Boy Chat Records
|
21 |
+
(In)Famous quotes from politician Kuochang Huang.
|
22 |
+
|
23 |
+
# Introduction
|
24 |
+
This is a collection of quotes from Kuochang Huang, a Taiwanese politician.
|
25 |
+
|
26 |
+
![醬汁](cmb-02.jpg)
|
27 |
+
|
28 |
+
## How to Use
|
29 |
+
```python
|
30 |
+
from datasets import load_dataset
|
31 |
+
|
32 |
+
dataset = load_dataset("kuochang_sensei_quotes")
|
33 |
+
```
|
34 |
+
|
35 |
+
## Dataset Description
|
36 |
+
The dataset is in CSV format, with the following columns:
|
37 |
+
* `speaker`: The speaker of the quote. Which is always "黃國昌".
|
38 |
+
* `quote`: The quote from Kuochang Huang.
|
39 |
+
|
40 |
+
### Sample Data
|
41 |
+
|
42 |
+
|speaker|quote|
|
43 |
+
|---|---|
|
44 |
+
|黃國昌|太離譜了真的太離譜了|
|
45 |
+
|黃國昌|讓大家看一下我俊俏的臉龐|
|
46 |
+
|
47 |
+
## Contributer
|
48 |
+
[@h-alice](https://huggingface.co/h-alice)
|
49 |
+
|
50 |
+
## Acknowledgements
|
51 |
+
This dataset heavily relies on the [**Quotes of Kuo-Chang**](https://kuochang.tw/quote), a site that collects quotes from politician Kuochang Huang. We thank the site owner forthe effort to collect and share these quotes.
|
52 |
+
|
53 |
+
## Disclaimer
|
54 |
+
This dataset is for research purposes only, and the dataset provider does not assume any responsibility for any legal or other consequences resulting from the use of this dataset.
|