-
Language: Pure Korean
-
Architecture: LatentMoE
-
Parameters: 150 million
-
Base_model: Voyager466920/KoRaptor
-
Use case: Conversational AI / Chatbot
-
Dataset: Korean chatbot dataset from AI Hub
-
License: Follows the license of the original dataset and model architecture
You can easily run inferences using the provided Inference.py script. No additional setup is required โ simply load the model and start chatting in Korean.
This model is incompatible with standard transformer loading methods (e.g., AutoModel). For simple inference, use the following code.
from huggingface_hub import hf_hub_download
import runpy
script_path = hf_hub_download(
repo_id="Voyager466920/KoRaptor_Chatbot",
filename="Inference.py"
)