Update README.md
Browse files
README.md
CHANGED
@@ -28,25 +28,25 @@ It achieves the following results on the evaluation set:
|
|
28 |
|
29 |
## Model description
|
30 |
|
31 |
-
|
32 |
|
33 |
## Intended uses & limitations
|
34 |
|
35 |
-
|
36 |
-
|
37 |
from transformers import pipeline
|
38 |
|
39 |
sentiment_model = pipeline(model="WhitePeak/bert-base-cased-Korean-sentiment")
|
40 |
sentiment_mode("매우 좋아")
|
|
|
41 |
|
42 |
Result:
|
|
|
43 |
LABEL_0: negative
|
44 |
LABEL_1: positive
|
45 |
-
|
46 |
|
47 |
## Training and evaluation data
|
48 |
|
49 |
-
More information needed
|
50 |
|
51 |
## Training procedure
|
52 |
|
|
|
28 |
|
29 |
## Model description
|
30 |
|
31 |
+
This is a fine-tuned model for a sentiment analysis for the Korean language based on customer reviews in the Korean language
|
32 |
|
33 |
## Intended uses & limitations
|
34 |
|
35 |
+
```python
|
|
|
36 |
from transformers import pipeline
|
37 |
|
38 |
sentiment_model = pipeline(model="WhitePeak/bert-base-cased-Korean-sentiment")
|
39 |
sentiment_mode("매우 좋아")
|
40 |
+
```
|
41 |
|
42 |
Result:
|
43 |
+
```
|
44 |
LABEL_0: negative
|
45 |
LABEL_1: positive
|
46 |
+
```
|
47 |
|
48 |
## Training and evaluation data
|
49 |
|
|
|
50 |
|
51 |
## Training procedure
|
52 |
|