File size: 804 Bytes
47fdca1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
language: ko
---

# BERT multilingual basecased finetuned with NSMC

This model is a fine-tune checkpoint of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased), fine-tuned on [NSMC(Naver Sentiment Movie Corpus)](https://github.com/e9t/nsmc).

## Usage

You can use this model directly with a pipeline for sentiment-analysis:

```python
>>> from transformers import pipeline
>>> classifier = pipeline(
    "sentiment-analysis", model="sangrimlee/bert-base-multilingual-cased-nsmc"
)
>>> classifier("ํ ...ํฌ์Šคํ„ฐ๋ณด๊ณ  ์ดˆ๋”ฉ์˜ํ™”์ค„....์˜ค๋ฒ„์—ฐ๊ธฐ์กฐ์ฐจ ๊ฐ€๋ณ์ง€ ์•Š๊ตฌ๋‚˜.")
>>> classifier("์•ก์…˜์ด ์—†๋Š”๋ฐ๋„ ์žฌ๋ฏธ ์žˆ๋Š” ๋ช‡์•ˆ๋˜๋Š” ์˜ํ™”")

[{'label': 'negative', 'score': 0.9642567038536072}]
[{'label': 'positive', 'score': 0.9970554113388062}]
```