Instructions to use chon6000/my-gemma-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use chon6000/my-gemma-model with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf chon6000/my-gemma-model:F16 # Run inference directly in the terminal: llama cli -hf chon6000/my-gemma-model:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf chon6000/my-gemma-model:F16 # Run inference directly in the terminal: llama cli -hf chon6000/my-gemma-model: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 chon6000/my-gemma-model:F16 # Run inference directly in the terminal: ./llama-cli -hf chon6000/my-gemma-model: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 chon6000/my-gemma-model:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf chon6000/my-gemma-model:F16
Use Docker
docker model run hf.co/chon6000/my-gemma-model:F16
- LM Studio
- Jan
- Ollama
How to use chon6000/my-gemma-model with Ollama:
ollama run hf.co/chon6000/my-gemma-model:F16
- Unsloth Desktop
- Docker Model Runner
How to use chon6000/my-gemma-model with Docker Model Runner:
docker model run hf.co/chon6000/my-gemma-model:F16
- Lemonade
How to use chon6000/my-gemma-model with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull chon6000/my-gemma-model:F16
Run and chat with the model
lemonade run user.my-gemma-model-F16
List all available models
lemonade list
- Atomic Chat
Trained with Unsloth - config
Browse files- config.json +2 -0
config.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
| 45 |
"audio_token_id": 258881,
|
| 46 |
"boa_token_id": 256000,
|
| 47 |
"boi_token_id": 255999,
|
|
|
|
| 48 |
"torch_dtype": "float16",
|
| 49 |
"eoa_token_id": 258883,
|
| 50 |
"eoa_token_index": 258883,
|
|
@@ -143,6 +144,7 @@
|
|
| 143 |
"tie_word_embeddings": true,
|
| 144 |
"unsloth_fixed": true,
|
| 145 |
"unsloth_version": "2026.6.1",
|
|
|
|
| 146 |
"video_token_id": 258884,
|
| 147 |
"vision_config": {
|
| 148 |
"_name_or_path": "",
|
|
|
|
| 45 |
"audio_token_id": 258881,
|
| 46 |
"boa_token_id": 256000,
|
| 47 |
"boi_token_id": 255999,
|
| 48 |
+
"bos_token_id": 2,
|
| 49 |
"torch_dtype": "float16",
|
| 50 |
"eoa_token_id": 258883,
|
| 51 |
"eoa_token_index": 258883,
|
|
|
|
| 144 |
"tie_word_embeddings": true,
|
| 145 |
"unsloth_fixed": true,
|
| 146 |
"unsloth_version": "2026.6.1",
|
| 147 |
+
"use_cache": false,
|
| 148 |
"video_token_id": 258884,
|
| 149 |
"vision_config": {
|
| 150 |
"_name_or_path": "",
|