File size: 3,554 Bytes
7e35ca2 fa9d8cf 7e35ca2 fa9d8cf 7e35ca2 fa9d8cf 7e35ca2 fa9d8cf 7e35ca2 fa9d8cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
---
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)์์ ํ์ธํ์ค ์ ์์ต๋๋ค.
|