-
- [kcbert](https://github.com/Beomi/KcBERT)가 huggingface 인터페이스를 따르기 때문에 쉽게 사용이 가능
- [KcELECTRA](https://github.com/Beomi/KcELECTRA)도 고려 가능할듯
→ 더 최신의 bert 모델
-
안녕하세요 우선 hugging face를 사용해 많은 사람들이 KoBERT를 사용할 수 있도록 깃허브 에 공유해주셔서 감사합니다.
BERT를 공부하고 Question Answering task가 흥미로워서 한국어 데이터셋에 pre-train된 모델을 사용해 KorQuAD 데이터셋으로 fine-tuning하고자 합니다. KoBERT 모델을 찾던 중 mo…
-
from kobert.pytorch_kobert import get_pytorch_kobert_model
또는
bertmodel, vocab = get_pytorch_kobert_model()
코드 실행 시 실행 되다가 끝까지 못가고 커널이 죽어버려서 다음과 같은 메세지를 띄웁니다.
The kernel appears to have died. …
-
**개요**
개체명 인식 튜토리얼을 작성한다
-
Here is my codes.
```
import torch
from kobert.pytorch_kobert import get_pytorch_kobert_model
import numpy as np
import pandas as pd
from gluonnlp.data import SentencepieceTokenizer
from ko…
-
## Description
안녕하세요. Klue/roberta-base 모델을
MODEL_NAME = "klue/roberta-base"
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
model_config = AutoConfig.from_pretrained(MODEL_NAME)
model = …
-
```
from kobert_tokenizer import KoBERTTokenizer
tokenizer = KoBERTTokenizer.from_pretrained('skt/kobert-base-v1')
tokenizer([['나 보기가 역겨워', '김소월']])
{'input_ids': [[2, 1370, 2362, 5330, 3322, 5411…
-
Thanks for releasing the KoBERT model! However, I found that the parameters of `BertOnlyMLMHead` layer might be missing in the `monologg/kobert` model, which I think is a common issue that I also foun…
-
Hi,
Thanks for releasing the model. I want to ask how I can get the config file of KoBert. For example, the config of BERT is like:
> BertConfig {
"architectures": [
"BertForMaskedLM"
…
-
구글 mutilingual BERT 로 만들어진 프로그램을
koBert 로 전환 가능할까요?