Instructions to use mradermacher/DPA-v1-Mistral-7B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/DPA-v1-Mistral-7B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/DPA-v1-Mistral-7B-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/DPA-v1-Mistral-7B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/DPA-v1-Mistral-7B-GGUF", filename="DPA-v1-Mistral-7B.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/DPA-v1-Mistral-7B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/DPA-v1-Mistral-7B-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/DPA-v1-Mistral-7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/DPA-v1-Mistral-7B-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/DPA-v1-Mistral-7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/DPA-v1-Mistral-7B-GGUF with Ollama:
ollama run hf.co/mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/DPA-v1-Mistral-7B-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/DPA-v1-Mistral-7B-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/DPA-v1-Mistral-7B-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/DPA-v1-Mistral-7B-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/DPA-v1-Mistral-7B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/DPA-v1-Mistral-7B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/DPA-v1-Mistral-7B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.DPA-v1-Mistral-7B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from marco
Browse files- .gitattributes +12 -0
- DPA-v1-Mistral-7B.IQ4_XS.gguf +3 -0
- DPA-v1-Mistral-7B.Q2_K.gguf +3 -0
- DPA-v1-Mistral-7B.Q3_K_L.gguf +3 -0
- DPA-v1-Mistral-7B.Q3_K_M.gguf +3 -0
- DPA-v1-Mistral-7B.Q3_K_S.gguf +3 -0
- DPA-v1-Mistral-7B.Q4_K_M.gguf +3 -0
- DPA-v1-Mistral-7B.Q4_K_S.gguf +3 -0
- DPA-v1-Mistral-7B.Q5_K_M.gguf +3 -0
- DPA-v1-Mistral-7B.Q5_K_S.gguf +3 -0
- DPA-v1-Mistral-7B.Q6_K.gguf +3 -0
- DPA-v1-Mistral-7B.Q8_0.gguf +3 -0
- DPA-v1-Mistral-7B.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 |
+
DPA-v1-Mistral-7B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
DPA-v1-Mistral-7B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
DPA-v1-Mistral-7B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
DPA-v1-Mistral-7B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
DPA-v1-Mistral-7B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
DPA-v1-Mistral-7B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
DPA-v1-Mistral-7B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
DPA-v1-Mistral-7B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
DPA-v1-Mistral-7B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
DPA-v1-Mistral-7B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
DPA-v1-Mistral-7B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
DPA-v1-Mistral-7B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
DPA-v1-Mistral-7B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad46562a1e9f2d59fe58af6f2cc989eabe1cffe7cf425c132429e99fd882723b
|
| 3 |
+
size 3944389504
|
DPA-v1-Mistral-7B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1924c5ed5fa512b4a426dc4f74dff5532914bdc1d94f3d0cc3f2199ed6e08bf2
|
| 3 |
+
size 2719243136
|
DPA-v1-Mistral-7B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72ebd73bbc354e01438e39e7d097cb6816b7499540f9b55deea2387dbf2c550b
|
| 3 |
+
size 3822025600
|
DPA-v1-Mistral-7B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac3c3e18d583b82be12c42863f626a8087b86401014a503ba51a2d33902d43e5
|
| 3 |
+
size 3518987136
|
DPA-v1-Mistral-7B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d730ee6fdba4a562a09c9d36909975201f46effd3e962b342d5dc5a52b601584
|
| 3 |
+
size 3164568448
|
DPA-v1-Mistral-7B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd88a0811fe60566164f1ff917efe2dcc3646b7e71874b18b1b0ac0e610ca8f2
|
| 3 |
+
size 4368440192
|
DPA-v1-Mistral-7B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df98420f26893a0d22b6324cdafc95589061eb972f8c7596b719058a5f759448
|
| 3 |
+
size 4140374912
|
DPA-v1-Mistral-7B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb4519aa967ace891c2b023b710a75c7ea174148e1c6b12a2a68eae247653fc1
|
| 3 |
+
size 5131410304
|
DPA-v1-Mistral-7B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a00a1e1a2ff76f9b660979a101671cfaf95100b41096f13feb68b85dedb3c1e
|
| 3 |
+
size 4997716864
|
DPA-v1-Mistral-7B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be1b65acfafb0d1eb9a4b69210aadbbd822ac1995c8648b901867000d58e4d3e
|
| 3 |
+
size 5942066048
|
DPA-v1-Mistral-7B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:367bc9864310eee846d753b3964062d9688796a6484157a2836c63be9079d531
|
| 3 |
+
size 7695858560
|
DPA-v1-Mistral-7B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c49484a5167c402366f5d46b3aca95bda968871f9ac4b43981b88ea4a463b6d
|
| 3 |
+
size 14484732800
|