|
--- |
|
thumbnail: "KoAirBERT: Korean BERT Model Specialized for Aviation Safety Domain" |
|
license: agpl-3.0 |
|
language: |
|
- ko |
|
- en |
|
library_name: transformers |
|
tags: |
|
- aviation |
|
- aviation safety |
|
- BERT |
|
- Korean BERT |
|
- Aviation BERT |
|
--- |
|
<!--- |
|
Copyright (C) 2023 Donggeon Lee |
|
|
|
This program is free software: you can redistribute it and/or modify |
|
it under the terms of the GNU Affero General Public License as |
|
published by the Free Software Foundation, either version 3 of the |
|
License, or (at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU Affero General Public License for more details. |
|
|
|
You should have received a copy of the GNU Affero General Public License |
|
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
--> |
|
|
|
<div align="center"> |
|
<h1>π€ KoAirBERT βοΈ</h1> |
|
<p>ν곡 μμ λλ©μΈμ νΉνλ νκ΅μ΄ BERT λͺ¨λΈ</p> |
|
</div> |
|
|
|
<p align="center"> |
|
<img style="margin: 0.5em;" alt="Python" src="https://img.shields.io/badge/python-3.8-blue.svg"> |
|
<a style="margin: 0px;" href="https://huggingface.co/oneonlee/KoAirBERT"><img style="margin: 0.5em;" alt="Hugging Face" src="https://img.shields.io/badge/%F0%9F%A4%97-Models%20on%20Hub-yellow"></a> |
|
<a style="margin: 0px;" href="https://github.com/oneonlee/KoAirBERT/blob/master/LICENSE"><img style="margin: 0.5em;" alt="License: AGPL-v3" src="https://img.shields.io/badge/License-AGPL--v3-blue.svg"></a> |
|
<a style="margin: 0px;" href="https://doi.org/10.5281/zenodo.10158254"><img style="margin: 0.5em;" alt="DOI" src="https://img.shields.io/badge/DOI-10.5281%2Fzenodo.10158254-blue"></a> |
|
</p> |
|
|
|
## How to use |
|
|
|
π€ [Huggingface Hub](https://huggingface.co/oneonlee/KoAirBERT/tree/main)μ μ
λ‘λ λ λͺ¨λΈμ λ°λ‘ μ¬μ©ν μ μμ΅λλ€ :) |
|
|
|
```python |
|
# Load model directly |
|
from transformers import AutoTokenizer, AutoModelForPreTraining |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("oneonlee/KoAirBERT") |
|
model = AutoModelForPreTraining.from_pretrained("oneonlee/KoAirBERT") |
|
``` |
|
|
|
## Reference |
|
|
|
- [BERT](https://arxiv.org/abs/1810.04805) |
|
- [klue/bert-base](https://huggingface.co/klue/bert-base) |
|
- [huggingface/transformers](https://github.com/huggingface/transformers/) - pytorch [language-modeling](https://github.com/huggingface/transformers/tree/main/examples/pytorch/language-modeling) examples |
|
- [ν곡 μμ μ λ³΄μ§ (GYRO)](https://www.airsafety.or.kr/airsafety/board/gyro/list.do) |
|
- [ν곡μν€](https://airtravelinfo.kr/wiki/) |
|
- [κ΅ν κ΅ν΅λΆ ν곡μ©μ΄μ¬μ ](https://www.airportal.go.kr/knowledge/library/KdMain01.jsp) |
|
- [ν곡μμ μμ¨λ³΄κ³ λ°±μ(2021)](https://www.airsafety.or.kr/airsafety/board/aspds/view.do?bbsNo=4431) |
|
|
|
## Citation |
|
|
|
μ΄ μ½λλ₯Ό μ°κ΅¬μ©μΌλ‘ μ¬μ©νλ κ²½μ° μλμ κ°μ΄ μΈμ©ν΄μ£ΌμΈμ. |
|
|
|
```bibtex |
|
@software{lee_2023_10158254, |
|
author = {Lee, DongGeon}, |
|
title = {KoAirBERT: Korean BERT Model Specialized for Aviation Safety Domain}, |
|
month = nov, |
|
year = 2023, |
|
publisher = {Zenodo}, |
|
version = {v1.0.0}, |
|
doi = {10.5281/zenodo.10158254}, |
|
url = {https://doi.org/10.5281/zenodo.10158254} |
|
} |
|
``` |
|
|
|
## License |
|
|
|
`KoAirBERT`λ `AGPL-3.0` λΌμ΄μ μ€ νμ 곡κ°λμ΄ μμ΅λλ€. λͺ¨λΈ λ° μ½λλ₯Ό μ¬μ©ν κ²½μ° λΌμ΄μ μ€ λ΄μ©μ μ€μν΄μ£ΌμΈμ. λΌμ΄μ μ€ μ λ¬Έμ [LICENSE νμΌ](LICENSE)μμ νμΈνμ€ μ μμ΅λλ€. |
|
|