Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,11 @@
|
|
|
|
1 |
---
|
|
|
2 |
tags:
|
3 |
-
-
|
4 |
-
|
5 |
-
-
|
6 |
-
|
7 |
---
|
8 |
|
9 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
@@ -11,23 +13,28 @@ should probably proofread and complete it, then remove this comment. -->
|
|
11 |
|
12 |
# KoT5_news_summarization
|
13 |
|
14 |
-
This model is a
|
15 |
-
|
16 |
- Loss: 0.3872
|
17 |
|
18 |
## Model description
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
## Intended uses & limitations
|
23 |
|
24 |
-
|
|
|
|
|
|
|
25 |
|
26 |
-
|
|
|
|
|
|
|
27 |
|
28 |
-
|
|
|
|
|
29 |
|
30 |
-
## Training procedure
|
31 |
|
32 |
### Training hyperparameters
|
33 |
|
|
|
1 |
+
|
2 |
---
|
3 |
+
language: ko
|
4 |
tags:
|
5 |
+
- summarization
|
6 |
+
- T5
|
7 |
+
- news
|
8 |
+
inference: false
|
9 |
---
|
10 |
|
11 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
13 |
|
14 |
# KoT5_news_summarization
|
15 |
|
16 |
+
- This model is a [lcw99/t5-base-korean-text-summary](https://huggingface.co/lcw99/t5-base-korean-text-summary) finetuned on the [daekeun-ml/naver-news-summarization-ko](https://huggingface.co/datasets/daekeun-ml/naver-news-summarization-ko)
|
17 |
+
|
18 |
- Loss: 0.3872
|
19 |
|
20 |
## Model description
|
21 |
|
22 |
+
<<20221021 Commit>>
|
|
|
|
|
23 |
|
24 |
+
๊ฐ์ธ ์คํฐ๋์ฉ์ผ๋ก ๋ด์ค ์์ฝ ๋ชจ๋ธ ํนํ๋ ๋ชจ๋ธ์ ๋ง๋ค๊ธฐ ์ํด lcw99๋์ t5-base-korean-text-summary ๋ชจ๋ธ์ ์ถ๊ฐ์ ์ผ๋ก daekeun-ml๋์ด ์ ๊ณตํด์ฃผ์ naver-news-summarization-ko ๋ฐ์ดํฐ์
์ผ๋ก ํ์ธํ๋ ํ์ต๋๋ค.
|
25 |
+
ํ์ฌ ์ ๊ฐ ๊ฐ์ง๊ณ ์๋ ๋ด์ค ๋ฐ์ดํฐ๋ก ์ถ๊ฐ ํ์ต ์งํ ์์ ์
๋๋ค.
|
26 |
+
์ง์์ ์ผ๋ก ๋ฐ์ ์์ผ ์ข์ ์ฑ๋ฅ์ ๋ชจ๋ธ์ ๊ตฌํํ๊ฒ ์ต๋๋ค.
|
27 |
+
๊ฐ์ฌํฉ๋๋ค.
|
28 |
|
29 |
+
<pre><code>
|
30 |
+
# Python Code
|
31 |
+
from transformers import AutoTokenizer
|
32 |
+
from transformers import AutoModelForSeq2SeqLM
|
33 |
|
34 |
+
tokenizer = AutoTokenizer.from_pretrained("noahkim/KoT5_news_summarization")
|
35 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("noahkim/KoT5_news_summarization")
|
36 |
+
</pre></code>
|
37 |
|
|
|
38 |
|
39 |
### Training hyperparameters
|
40 |
|