Instructions to use ialberquilla/model-v0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ialberquilla/model-v0 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ialberquilla/model-v0", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ialberquilla/model-v0 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 ialberquilla/model-v0:Q4_K_M # Run inference directly in the terminal: llama cli -hf ialberquilla/model-v0:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ialberquilla/model-v0:Q4_K_M # Run inference directly in the terminal: llama cli -hf ialberquilla/model-v0:Q4_K_M
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 ialberquilla/model-v0:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf ialberquilla/model-v0:Q4_K_M
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 ialberquilla/model-v0:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf ialberquilla/model-v0:Q4_K_M
Use Docker
docker model run hf.co/ialberquilla/model-v0:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use ialberquilla/model-v0 with Ollama:
ollama run hf.co/ialberquilla/model-v0:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use ialberquilla/model-v0 with Docker Model Runner:
docker model run hf.co/ialberquilla/model-v0:Q4_K_M
- Lemonade
How to use ialberquilla/model-v0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ialberquilla/model-v0:Q4_K_M
Run and chat with the model
lemonade run user.model-v0-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
| 2 |
base_model: unsloth/gemma-2b-bnb-4bit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
license: apache-2.0
|
| 6 |
tags:
|
| 7 |
- text-generation-inference
|
| 8 |
- transformers
|
|
@@ -19,4 +18,4 @@ tags:
|
|
| 19 |
|
| 20 |
This gemma model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 21 |
|
| 22 |
-
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
| 2 |
base_model: unsloth/gemma-2b-bnb-4bit
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
| 5 |
tags:
|
| 6 |
- text-generation-inference
|
| 7 |
- transformers
|
|
|
|
| 18 |
|
| 19 |
This gemma model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 20 |
|
| 21 |
+
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|