Instructions to use mradermacher/LiteGPT-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/LiteGPT-Instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mradermacher/LiteGPT-Instruct-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/LiteGPT-Instruct-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/LiteGPT-Instruct-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/LiteGPT-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/LiteGPT-Instruct-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/LiteGPT-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/LiteGPT-Instruct-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/LiteGPT-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/LiteGPT-Instruct-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/LiteGPT-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/LiteGPT-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/LiteGPT-Instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use mradermacher/LiteGPT-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mradermacher/LiteGPT-Instruct-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/LiteGPT-Instruct-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/mradermacher/LiteGPT-Instruct-GGUF:Q4_K_M
- SGLang
How to use mradermacher/LiteGPT-Instruct-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mradermacher/LiteGPT-Instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/LiteGPT-Instruct-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mradermacher/LiteGPT-Instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/LiteGPT-Instruct-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use mradermacher/LiteGPT-Instruct-GGUF with Ollama:
ollama run hf.co/mradermacher/LiteGPT-Instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/LiteGPT-Instruct-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/LiteGPT-Instruct-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/LiteGPT-Instruct-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/LiteGPT-Instruct-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/LiteGPT-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/LiteGPT-Instruct-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/LiteGPT-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/LiteGPT-Instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.LiteGPT-Instruct-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- LiteGPT-Instruct.IQ4_XS.gguf +3 -0
- LiteGPT-Instruct.Q2_K.gguf +3 -0
- LiteGPT-Instruct.Q3_K_L.gguf +3 -0
- LiteGPT-Instruct.Q3_K_M.gguf +3 -0
- LiteGPT-Instruct.Q3_K_S.gguf +3 -0
- LiteGPT-Instruct.Q4_K_M.gguf +3 -0
- LiteGPT-Instruct.Q4_K_S.gguf +3 -0
- LiteGPT-Instruct.Q5_K_M.gguf +3 -0
- LiteGPT-Instruct.Q5_K_S.gguf +3 -0
- LiteGPT-Instruct.Q6_K.gguf +3 -0
- LiteGPT-Instruct.Q8_0.gguf +3 -0
- LiteGPT-Instruct.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 |
+
LiteGPT-Instruct.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
LiteGPT-Instruct.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
LiteGPT-Instruct.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
LiteGPT-Instruct.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
LiteGPT-Instruct.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
LiteGPT-Instruct.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
LiteGPT-Instruct.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
LiteGPT-Instruct.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
LiteGPT-Instruct.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
LiteGPT-Instruct.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
LiteGPT-Instruct.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
LiteGPT-Instruct.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
LiteGPT-Instruct.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:988e5e5e110f48611f6b918e74ed56d4ca830ceffb3a8cc013565d34f7ced54f
|
| 3 |
+
size 82590240
|
LiteGPT-Instruct.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13ffc18acac5870e1c496bc8bc7e1ba63cc8694f05d3f465f762a5247bc69b08
|
| 3 |
+
size 68563488
|
LiteGPT-Instruct.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c34c84caee618307230d685c9b27f2cea6bc238ad614c8aa6569b3f775b08bc5
|
| 3 |
+
size 85539360
|
LiteGPT-Instruct.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24153b7aadf6b1723e3fae08c93cd3ae804c6b3c7596adf0460b926bd083c9e6
|
| 3 |
+
size 81115680
|
LiteGPT-Instruct.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:896c48b0d3f7f6788484e3e2ad8cd13ec3ac6d4708517f260e950085c5cccdd0
|
| 3 |
+
size 73595424
|
LiteGPT-Instruct.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1913ba8974322e011ecec66c11e0f9c2de7256927fb5e0282ab1ef382011f0a
|
| 3 |
+
size 91179552
|
LiteGPT-Instruct.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b9c921eacdce0f8c581cdfa5f634979081c9a9b72f278e506fc30d6c2a84769
|
| 3 |
+
size 85170720
|
LiteGPT-Instruct.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a156fb0701098b189f49ebb193d37c55d0671c5d16c142f39377173f62c02136
|
| 3 |
+
size 100192800
|
LiteGPT-Instruct.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a75580a2dad5bf7a30f9bed5dfc6a35c47df5cbcea662d6cdd5584d240a626d
|
| 3 |
+
size 95492640
|
LiteGPT-Instruct.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3dd79c50b6e3d3026b8fb582eefb5582ba092a06d699a30173efdcfec5562f1
|
| 3 |
+
size 106773024
|
LiteGPT-Instruct.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6542d4952563c89813d384dfa591fc5d61df2bdc730476acfc967a1dce8af80
|
| 3 |
+
size 136699680
|
LiteGPT-Instruct.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c796b960240e062d653b6d0c01fa02042cb53a28fad3b3451ded4269a8f7446b
|
| 3 |
+
size 252544800
|