seoseo99 commited on
Commit
0c0cbd1
ยท
verified ยท
1 Parent(s): ec13be8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -33,6 +33,23 @@ Qwen2-1.5B-Instruct๋ฅผ ํ•œ๊ตญ์–ด ์—ฌํ–‰/ํ–‰์‚ฌ **ํ›„๊ธฐ ์š”์•ฝ** ์šฉ๋„๋กœ ๋ฏธ
33
  - `model-00001-of-00002.safetensors`, `model-00002-of-00002.safetensors` โ€” ๋ชจ๋ธ ๊ฐ€์ค‘์น˜ ์ƒค๋“œ(shard) ํŒŒ์ผ
34
  - `model.safetensors.index.json` โ€” ๊ฐ ํŒŒ๋ผ๋ฏธํ„ฐ ํ…์„œ๊ฐ€ ์–ด๋А shard์— ์žˆ๋Š”์ง€ ์ธ๋ฑ์Šค ๋งต
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ## Quickstart (Transformers)
37
 
38
  ```python
 
33
  - `model-00001-of-00002.safetensors`, `model-00002-of-00002.safetensors` โ€” ๋ชจ๋ธ ๊ฐ€์ค‘์น˜ ์ƒค๋“œ(shard) ํŒŒ์ผ
34
  - `model.safetensors.index.json` โ€” ๊ฐ ํŒŒ๋ผ๋ฏธํ„ฐ ํ…์„œ๊ฐ€ ์–ด๋А shard์— ์žˆ๋Š”์ง€ ์ธ๋ฑ์Šค ๋งต
35
 
36
+ ---
37
+
38
+ ## Introduction (EN)
39
+ Qwen2-1.5B-Instruct fine-tuned for **Korean travel/event review summarization** (1.5B parameters).
40
+ Well-suited for **1โ€“3 sentence** concise summaries, key-point extraction, and aggregating multiple reviews.
41
+
42
+ ## Files (EN)
43
+ - `config.json` โ€” Model architecture settings (hidden size, number of layers, etc.). Structural info; usually not modified.
44
+ - `generation_config.json` โ€” Default parameters for `generate()` (e.g., `max_new_tokens`, `temperature`, `top_p`).
45
+ - `tokenizer.json` โ€” Full definition of the Fast tokenizer (vocab/merges/preprocessing pipeline).
46
+ - `tokenizer_config.json` โ€” Tokenizer metadata (`model_max_length`, special-token policies, etc.).
47
+ - `special_tokens_map.json` โ€” Mapping for special tokens (e.g., `eos`, `pad`).
48
+ - `model-00001-of-00002.safetensors`, `model-00002-of-00002.safetensors` โ€” Sharded model weights.
49
+ - `model.safetensors.index.json` โ€” Index mapping that shows which tensors live in which shard.
50
+
51
+ ---
52
+
53
  ## Quickstart (Transformers)
54
 
55
  ```python