Instructions to use jata77/lora_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jata77/lora_model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("jata77/lora_model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jata77/lora_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 jata77/lora_model:F16 # Run inference directly in the terminal: llama cli -hf jata77/lora_model:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jata77/lora_model:F16 # Run inference directly in the terminal: llama cli -hf jata77/lora_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 jata77/lora_model:F16 # Run inference directly in the terminal: ./llama-cli -hf jata77/lora_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 jata77/lora_model:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf jata77/lora_model:F16
Use Docker
docker model run hf.co/jata77/lora_model:F16
- LM Studio
- Jan
- Ollama
How to use jata77/lora_model with Ollama:
ollama run hf.co/jata77/lora_model:F16
- Unsloth Desktop
- Docker Model Runner
How to use jata77/lora_model with Docker Model Runner:
docker model run hf.co/jata77/lora_model:F16
- Lemonade
How to use jata77/lora_model with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jata77/lora_model:F16
Run and chat with the model
lemonade run user.lora_model-F16
List all available models
lemonade list
- Atomic Chat
Upload model trained with Unsloth
Browse filesUpload model trained with Unsloth 2x faster
- adapter_config.json +3 -3
- adapter_model.safetensors +1 -1
adapter_config.json
CHANGED
|
@@ -20,13 +20,13 @@
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": "unsloth",
|
| 22 |
"target_modules": [
|
| 23 |
-
"
|
| 24 |
"v_proj",
|
| 25 |
"k_proj",
|
| 26 |
"q_proj",
|
| 27 |
"up_proj",
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
|
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": "unsloth",
|
| 22 |
"target_modules": [
|
| 23 |
+
"gate_proj",
|
| 24 |
"v_proj",
|
| 25 |
"k_proj",
|
| 26 |
"q_proj",
|
| 27 |
"up_proj",
|
| 28 |
+
"down_proj",
|
| 29 |
+
"o_proj"
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 167832240
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9d1ff041356cd56fd661c654132719294942e5db103715e3cc264b2603bad3e
|
| 3 |
size 167832240
|