Instructions to use smartmind/albert-kor-base-tweak with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use smartmind/albert-kor-base-tweak with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="smartmind/albert-kor-base-tweak")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("smartmind/albert-kor-base-tweak") model = AutoModelForMaskedLM.from_pretrained("smartmind/albert-kor-base-tweak", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ko
|
| 4 |
+
tags:
|
| 5 |
+
- albert
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# smartmind/albert-kor-base-tweak
|
| 9 |
+
|
| 10 |
+
[kykim/albert-kor-base](https://huggingface.co/kykim/albert-kor-base)์ ๋์ผํ ๋ชจ๋ธ์
๋๋ค.
|
| 11 |
+
|
| 12 |
+
`AutoTokenizer`๋ก ํ ํฌ๋์ด์ ๋ฅผ ๋ถ๋ฌ์ฌ ์ ์๋๋ก ์กฐ์ ํ์ต๋๋ค.
|