Instructions to use aixk/Kori-390M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use aixk/Kori-390M with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="aixk/Kori-390M", filename="sai_f16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use aixk/Kori-390M with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf aixk/Kori-390M:F16 # Run inference directly in the terminal: llama-cli -hf aixk/Kori-390M:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf aixk/Kori-390M:F16 # Run inference directly in the terminal: llama-cli -hf aixk/Kori-390M:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf aixk/Kori-390M:F16 # Run inference directly in the terminal: ./llama-cli -hf aixk/Kori-390M:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf aixk/Kori-390M:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf aixk/Kori-390M:F16
Use Docker
docker model run hf.co/aixk/Kori-390M:F16
- LM Studio
- Jan
- vLLM
How to use aixk/Kori-390M with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aixk/Kori-390M" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aixk/Kori-390M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/aixk/Kori-390M:F16
- Ollama
How to use aixk/Kori-390M with Ollama:
ollama run hf.co/aixk/Kori-390M:F16
- Unsloth Studio
How to use aixk/Kori-390M with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for aixk/Kori-390M to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for aixk/Kori-390M to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for aixk/Kori-390M to start chatting
- Docker Model Runner
How to use aixk/Kori-390M with Docker Model Runner:
docker model run hf.co/aixk/Kori-390M:F16
- Lemonade
How to use aixk/Kori-390M with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull aixk/Kori-390M:F16
Run and chat with the model
lemonade run user.Kori-390M-F16
List all available models
lemonade list
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf aixk/Kori-390M:F16# Run inference directly in the terminal:
llama-cli -hf aixk/Kori-390M:F16Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf aixk/Kori-390M:F16# Run inference directly in the terminal:
./llama-cli -hf aixk/Kori-390M:F16Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf aixk/Kori-390M:F16# Run inference directly in the terminal:
./build/bin/llama-cli -hf aixk/Kori-390M:F16Use Docker
docker model run hf.co/aixk/Kori-390M:F16ISAI - 이사이
I’m an independent developer building and maintaining AI projects on my own.
Everything from model development to server costs, datasets, and feature updates is handled personally.
Every bit of support helps keep the project running and allows me to improve it further.
If you enjoy the project, please consider supporting it. Thank you.
혼자서 AI 프로젝트를 개발하고 운영하고 있습니다.
모델 개발, 서버 비용, 기능 개선까지 모두 개인이 직접 진행하고 있습니다.
작은 후원 하나하나가 서비스 유지와 새로운 기능 개발에 큰 도움이 됩니다.
프로젝트가 마음에 드셨다면 후원으로 응원해주세요. 감사합니다.
Model Description
Kori-390M is a lightweight language model built upon SmolLM2-360M. It has been specifically optimized to enhance Korean language capabilities and features an expanded model depth, providing a more robust performance while maintaining efficiency for various AI-driven tasks.
- Downloads last month
- 493
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf aixk/Kori-390M:F16# Run inference directly in the terminal: llama-cli -hf aixk/Kori-390M:F16