Instructions to use macadeliccc/dolphincoder-starcoder2-15b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use macadeliccc/dolphincoder-starcoder2-15b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="macadeliccc/dolphincoder-starcoder2-15b-GGUF", filename="dolphincoder-starcoder2-15b.q2_k.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use macadeliccc/dolphincoder-starcoder2-15b-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf macadeliccc/dolphincoder-starcoder2-15b-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 macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf macadeliccc/dolphincoder-starcoder2-15b-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 macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf macadeliccc/dolphincoder-starcoder2-15b-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 macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use macadeliccc/dolphincoder-starcoder2-15b-GGUF with Ollama:
ollama run hf.co/macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
- Unsloth Studio new
How to use macadeliccc/dolphincoder-starcoder2-15b-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 macadeliccc/dolphincoder-starcoder2-15b-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 macadeliccc/dolphincoder-starcoder2-15b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for macadeliccc/dolphincoder-starcoder2-15b-GGUF to start chatting
- Docker Model Runner
How to use macadeliccc/dolphincoder-starcoder2-15b-GGUF with Docker Model Runner:
docker model run hf.co/macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
- Lemonade
How to use macadeliccc/dolphincoder-starcoder2-15b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull macadeliccc/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.dolphincoder-starcoder2-15b-GGUF-Q4_K_M
List all available models
lemonade list
Upload 8 files
Browse files- .gitattributes +7 -0
- dolphincoder-starcoder2-15b.fp16.bin +3 -0
- dolphincoder-starcoder2-15b.q2_k.gguf +3 -0
- dolphincoder-starcoder2-15b.q3_k_m.gguf +3 -0
- dolphincoder-starcoder2-15b.q4_k_m.gguf +3 -0
- dolphincoder-starcoder2-15b.q5_0.gguf +3 -0
- dolphincoder-starcoder2-15b.q5_k_m.gguf +3 -0
- dolphincoder-starcoder2-15b.q6_k.gguf +3 -0
- dolphincoder-starcoder2-15b.q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,10 @@ 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 |
+
dolphincoder-starcoder2-15b.q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
dolphincoder-starcoder2-15b.q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
dolphincoder-starcoder2-15b.q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
dolphincoder-starcoder2-15b.q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
dolphincoder-starcoder2-15b.q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
dolphincoder-starcoder2-15b.q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
dolphincoder-starcoder2-15b.q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
dolphincoder-starcoder2-15b.fp16.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34381fdfca3ff78b255524ee5279a22456996a34c642c6b67b9f69be23ea6141
|
| 3 |
+
size 31922508864
|
dolphincoder-starcoder2-15b.q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3c3b979578f3f417a3cacaa243593e72a9f1b5f6c037381bec3e5ff53768728
|
| 3 |
+
size 6192384928
|
dolphincoder-starcoder2-15b.q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52eaaf04114d15418e19d7487d82bad6c02effa0d10b6e7a52f471c4fc98dbe1
|
| 3 |
+
size 8100466816
|
dolphincoder-starcoder2-15b.q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22ef2f8b89b79c3ddcc54f255ba19d140274374ff1e1e7e9c15b5e7504e73fcc
|
| 3 |
+
size 9859618528
|
dolphincoder-starcoder2-15b.q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9caa32c0fc15851f9c77515be6e9d3ec6b4b4c126b9e3b38ed71a5f4afbc134d
|
| 3 |
+
size 11021475040
|
dolphincoder-starcoder2-15b.q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31219b7da4cd0ee9a17ba1b5a0582795916493b9a01e8e08e91da7911757bee6
|
| 3 |
+
size 11430911200
|
dolphincoder-starcoder2-15b.q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d322347db764c4421ba3f17493320257f999d8e16d798036603fe8f273e48f40
|
| 3 |
+
size 13100409664
|
dolphincoder-starcoder2-15b.q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27445002b65036ad5d4a8a9cdf0e293534dab72c404a5ea64e2e3d6b6500462a
|
| 3 |
+
size 16964549248
|