pytorch-bert-crf-ner
pytorch-bert-crf-ner copied to clipboard
KoBERT와 CRF로 만든 한국어 개체명인식기 (BERT+CRF based Named Entity Recognition model for Korean)
main() 실행 시 RuntimeError: Input, output and indices must be on the current device라고 뜨면서 NER수행이 안되는데 혹시 수정할 부분 있을까요 의존성은 requirements.txt대로 깔았습니다 ㅠ 전체 에러문입니다. `RuntimeError Traceback (most...
현재 코드를 돌려보면 kobert와 vocab 가중치를 받아오는 서버에 문제가 있는 것으로 확인 됩니다. https://github.com/SKT-AI/KoBART/issues/17 해당 이슈는 다음 파일에서 일어납니다 .../pytorch-bert-crf-ner/kobert/pytorch_kobert.py 에러 메세지 입니다. > File ".../miniconda3/envs/ner_test/lib/python3.8/site-packages/urllib3/connection.py", line 181, in _new_conn...
다음과 같이 에러가 납니다. ERROR: Cannot install -r requirements.txt (line 64) and tensorflow-estimator==2.4.0 because these package versions have conflicting dependencies. The conflict is caused by: The user requested tensorflow-estimator==2.4.0 tensorflow...
macOS에서 실행시 아래와같은 오류가 발생합니다. ``` [1] 43780 illegal hardware instruction python train_bert_crf.py ``` 
- 띄어쓰기 모델 업데이트 - crf 모듈 업데이트 - https://github.com/s14t284/TorchCRF # 고려해볼 것
Thanks for your code. When I tried 'ner_dataset.py' in 'data_utils' directory of this repository in colab(Runtime: GPU), I realized **ERROR: No module named 'data_utils' / 'KoBERT'** is keep happening. **So...
모델의 환경설정 및 README의 'Requirements'항목에 나온 라이브러리 다운로드와 관련하여 질문드립니다. (related to Requirements in README)
(KOR) 안녕하세요. 최근에 제작하신 모델을 실행시켜 보기 위해서 다운로드 및 환경설정을 진행하다가 몇 가지 궁금한 점이 생겨 질문드리게 되었습니다. 1. GPU가 2개인 PC에서 Mxnet 및 Gluonnlp 설치를 진행하다가 'Note' 부분에서...
안녕하세요 좋은 자료 공유해주셔서 감사의 말씀을 우선 정합니다. Inference.py 에서 ``` convert_keys = {} for k, v in checkpoint['model_state_dict'].items(): new_key_name = k.replace("module.", '') if new_key_name not in model_dict: print("{} is...
안녕하세요, 좋은 코드를 공유해 주셔서 감사합니다. Interactive_shell_NER.ipynb의 DecoderFromNamedEntitySequence를 사용하던 중 - B-tag가 연속으로 나오는 경우 - I-tag로 문서가 끝나는 경우 - B-tag 없이 I-tag가 나오는 경우 에 대한 예외처리를 진행하며...
DecoderFromNamedEntitySequence class에서 list_of_ner_word list를 append하기 위한 아래 조건문이 문제가 있는 것 같습니다. **if prev_entity_tag != entity_tag and prev_entity_tag != "":** prev_entity_tag != entity_tag 조건으로 연속되는 같은 개체명에서 앞의 개체명을 인식하지...