Instructions to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF 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 mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF: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 mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF: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 mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF with Ollama:
ollama run hf.co/mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF 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 mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF 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 mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/phi3_lora_sft-mathinstruct-lima-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.phi3_lora_sft-mathinstruct-lima-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from nico1
Browse files- .gitattributes +12 -0
- phi3_lora_sft-mathinstruct-lima.IQ4_XS.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q2_K.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q3_K_L.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q3_K_M.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q3_K_S.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q4_K_M.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q4_K_S.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q5_K_M.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q5_K_S.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q6_K.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.Q8_0.gguf +3 -0
- phi3_lora_sft-mathinstruct-lima.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
phi3_lora_sft-mathinstruct-lima.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
phi3_lora_sft-mathinstruct-lima.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
phi3_lora_sft-mathinstruct-lima.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
phi3_lora_sft-mathinstruct-lima.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
phi3_lora_sft-mathinstruct-lima.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
phi3_lora_sft-mathinstruct-lima.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
phi3_lora_sft-mathinstruct-lima.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
phi3_lora_sft-mathinstruct-lima.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
phi3_lora_sft-mathinstruct-lima.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
phi3_lora_sft-mathinstruct-lima.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
phi3_lora_sft-mathinstruct-lima.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
phi3_lora_sft-mathinstruct-lima.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
phi3_lora_sft-mathinstruct-lima.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:666a78ef24b0f66356c05eb6489b0ce8a2a864d87b9c6bdc54eaae0a6520107e
|
| 3 |
+
size 2075581824
|
phi3_lora_sft-mathinstruct-lima.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ca3091e84a997f065dabc763ae8ca8b777ed3ac94b24d424e84df205ed2eab5
|
| 3 |
+
size 1416204672
|
phi3_lora_sft-mathinstruct-lima.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71da425c6df717e5b45b8c97c824c3e6dc4d0c346c288c59c6ec9b5f99664e54
|
| 3 |
+
size 2087597952
|
phi3_lora_sft-mathinstruct-lima.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee91ea8125208b36d9c73b92de19bfc27d947f10e68daa0cee876d6065d31457
|
| 3 |
+
size 1955477376
|
phi3_lora_sft-mathinstruct-lima.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2087ddca1196ca91952d30e189226ff203fa0f424f5faf29f80f576a2926fb3d
|
| 3 |
+
size 1681799040
|
phi3_lora_sft-mathinstruct-lima.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:154c476ee49797f486da98dcba74553f0f7a4eab7ad6dcd4a299126720aa0814
|
| 3 |
+
size 2393232768
|
phi3_lora_sft-mathinstruct-lima.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b4ddd5c5669291a83dfbdb27f0f78141b72a1e9a956e4579190bc1dc5887ee8
|
| 3 |
+
size 2188760448
|
phi3_lora_sft-mathinstruct-lima.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b6dd8bf2bf8a553a79b66e97a7c701321416d1a53477cbb7a373f8086cb2ee7
|
| 3 |
+
size 2815276416
|
phi3_lora_sft-mathinstruct-lima.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20ebdfe93cb248a4785ff5883924798895cdb053c34b182d29e0ffdcabc9934c
|
| 3 |
+
size 2641474944
|
phi3_lora_sft-mathinstruct-lima.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a14c81580fa4d16e3b6c8123b4c199e3a85d57c63bafedf70e20a0c220a25c2e
|
| 3 |
+
size 3135853440
|
phi3_lora_sft-mathinstruct-lima.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33d15d46a386ea111d46ed04c5a117fdbac0583289bb486e6472f616bb28a12f
|
| 3 |
+
size 4061222784
|
phi3_lora_sft-mathinstruct-lima.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3134dcdbba0521c3347e6775d90907f416dcc8bafb7aabae24623253cac8021b
|
| 3 |
+
size 7643297664
|