MY-GGUF
Collection
11 items โข Updated
How to use joongi007/JEJUMA-002-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="joongi007/JEJUMA-002-GGUF", filename="JEJUMA-002-Q2_K.gguf", )
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)How to use joongi007/JEJUMA-002-GGUF with llama.cpp:
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf joongi007/JEJUMA-002-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf joongi007/JEJUMA-002-GGUF:Q4_K_M
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf joongi007/JEJUMA-002-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf joongi007/JEJUMA-002-GGUF:Q4_K_M
# 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 joongi007/JEJUMA-002-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf joongi007/JEJUMA-002-GGUF:Q4_K_M
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 joongi007/JEJUMA-002-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf joongi007/JEJUMA-002-GGUF:Q4_K_M
docker model run hf.co/joongi007/JEJUMA-002-GGUF:Q4_K_M
How to use joongi007/JEJUMA-002-GGUF with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "joongi007/JEJUMA-002-GGUF"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "joongi007/JEJUMA-002-GGUF",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/joongi007/JEJUMA-002-GGUF:Q4_K_M
How to use joongi007/JEJUMA-002-GGUF with Ollama:
ollama run hf.co/joongi007/JEJUMA-002-GGUF:Q4_K_M
How to use joongi007/JEJUMA-002-GGUF with Unsloth Studio:
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 joongi007/JEJUMA-002-GGUF to start chatting
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 joongi007/JEJUMA-002-GGUF to start chatting
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for joongi007/JEJUMA-002-GGUF to start chatting
How to use joongi007/JEJUMA-002-GGUF with Docker Model Runner:
docker model run hf.co/joongi007/JEJUMA-002-GGUF:Q4_K_M
How to use joongi007/JEJUMA-002-GGUF with Lemonade:
# Download Lemonade from https://lemonade-server.ai/ lemonade pull joongi007/JEJUMA-002-GGUF:Q4_K_M
lemonade run user.JEJUMA-002-GGUF-Q4_K_M
lemonade list
Original model is JEJUMA/JEJUMA-002 - bbd7ec2
JEJUMA Official Quantization is JEJUMA/JEJUMA-002-GGUF
After trying out this model, I noticed a few things:
Answer your questions using the Jeju dialect.
user question hello! How are you doing now?
assistant answer ํ์ฏค ํ๊ณผ๊ฒ
# ํ ์ ๋ง์ต๋๊น
Prompt(LM Studio)
<|start_header_id|>system<|end_header_id|>
{System}
<|eot_id|><|start_header_id|>user<|end_header_id|>
{User}
<|eot_id|><|start_header_id|>assistant<|end_header_id|>
{Assistant}
Example of User Prompts
Detect the following sentence or word is standard, jeju, chungcheong, gangwon, gyeongsang, or jeonla's dialect:
```
{Enter the Jeju island dialect or standard Korean here}
```
Detect the following sentence or word is which dialect and convert the following sentence or word to standard Korean:
```
{Enter Jeju island dialect or standard Korean here}
```
Base model
JEJUMA/JEJUMA-002
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "joongi007/JEJUMA-002-GGUF"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "joongi007/JEJUMA-002-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'