noahkim commited on
Commit
6ca09b7
โ€ข
1 Parent(s): e8d42e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -13
README.md CHANGED
@@ -1,9 +1,11 @@
 
1
  ---
 
2
  tags:
3
- - generated_from_trainer
4
- model-index:
5
- - name: KoT5_news_summarization
6
- results: []
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 fine-tuned version of [lcw99/t5-base-korean-text-summary](https://huggingface.co/lcw99/t5-base-korean-text-summary) on an unknown dataset.
15
- It achieves the following results on the evaluation set:
16
  - Loss: 0.3872
17
 
18
  ## Model description
19
 
20
- More information needed
21
-
22
- ## Intended uses & limitations
23
 
24
- More information needed
 
 
 
25
 
26
- ## Training and evaluation data
 
 
 
27
 
28
- More information needed
 
 
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