File size: 971 Bytes
f4dab74
e8790fd
 
f4dab74
e8790fd
 
 
 
 
 
 
f4dab74
 
e8790fd
f4dab74
e8790fd
f4dab74
e8790fd
f4dab74
e8790fd
 
 
 
 
 
 
f4dab74
e8790fd
 
 
f4dab74
e8790fd
 
 
 
f4dab74
e8790fd
f4dab74
e8790fd
 
 
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
33
34
35
36
37
38
39
40
41
---
language: en
license: mit
library_name: transformers
tags:
- text-classification
- sentiment-analysis
- fine-tuned
datasets:
- imdb
base_model: distilbert-base-uncased
---

# DistilBERT IMDb Sentiment Analysis

DistilBERT๋ฅผ IMDb ์˜ํ™” ๋ฆฌ๋ทฐ ๊ฐ์ •๋ถ„์„ ๋ฐ์ดํ„ฐ์…‹์œผ๋กœ fine-tuningํ•œ ๋ชจ๋ธ์ž…๋‹ˆ๋‹ค.

## ํ•™์Šต ์ƒ์„ธ

- **๋ฒ ์ด์Šค ๋ชจ๋ธ:** distilbert-base-uncased
- **๋ฐ์ดํ„ฐ์…‹:** IMDb (train 2,000 / test 500 ์ƒ˜ํ”Œ)
- **ํƒœ์Šคํฌ:** ์ด์ง„ ๊ฐ์ •๋ถ„๋ฅ˜ (๊ธ์ •/๋ถ€์ •)
- **Epoch:** 2
- **Learning Rate:** 2e-5
- **Batch Size:** 16
- **Max Length:** 256

## ์‚ฌ์šฉ๋ฒ•
```python
from transformers import pipeline

classifier = pipeline("text-classification", model="AutoBot000/distilbert-imdb-sentiment")
result = classifier("This movie was absolutely fantastic!")
print(result)
```

## ํ•œ๊ณ„

- ํ•™์Šต ๋ฐ์ดํ„ฐ๋ฅผ 2,000๊ฐœ๋กœ ์ถ•์†Œํ•˜์—ฌ ์‹ค์Šต ๋ชฉ์ ์œผ๋กœ ํ•™์Šตํ•จ
- ์ „์ฒด ๋ฐ์ดํ„ฐ(25K)๋กœ ํ•™์Šต ์‹œ ์„ฑ๋Šฅ ํ–ฅ์ƒ ๊ธฐ๋Œ€
- ์˜์–ด ๋ฆฌ๋ทฐ ์ „์šฉ