Instructions to use dagbs/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 dagbs/dolphincoder-starcoder2-15b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="dagbs/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 dagbs/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 dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf dagbs/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 dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf dagbs/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 dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf dagbs/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 dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use dagbs/dolphincoder-starcoder2-15b-GGUF with Ollama:
ollama run hf.co/dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
- Unsloth Studio new
How to use dagbs/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 dagbs/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 dagbs/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 dagbs/dolphincoder-starcoder2-15b-GGUF to start chatting
- Docker Model Runner
How to use dagbs/dolphincoder-starcoder2-15b-GGUF with Docker Model Runner:
docker model run hf.co/dagbs/dolphincoder-starcoder2-15b-GGUF:Q4_K_M
- Lemonade
How to use dagbs/dolphincoder-starcoder2-15b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dagbs/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 folder using huggingface_hub
Browse files- .gitattributes +10 -0
- dolphincoder-starcoder2-15b.Q2_K.gguf +3 -0
- dolphincoder-starcoder2-15b.Q3_K_L.gguf +3 -0
- dolphincoder-starcoder2-15b.Q3_K_M.gguf +3 -0
- dolphincoder-starcoder2-15b.Q3_K_S.gguf +3 -0
- dolphincoder-starcoder2-15b.Q4_K_M.gguf +3 -0
- dolphincoder-starcoder2-15b.Q4_K_S.gguf +3 -0
- dolphincoder-starcoder2-15b.Q5_K_M.gguf +3 -0
- dolphincoder-starcoder2-15b.Q5_K_S.gguf +3 -0
- dolphincoder-starcoder2-15b.Q6_K.gguf +3 -0
- dolphincoder-starcoder2-15b.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,13 @@ 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_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
dolphincoder-starcoder2-15b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
dolphincoder-starcoder2-15b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
dolphincoder-starcoder2-15b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
dolphincoder-starcoder2-15b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
dolphincoder-starcoder2-15b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
dolphincoder-starcoder2-15b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
dolphincoder-starcoder2-15b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
dolphincoder-starcoder2-15b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
dolphincoder-starcoder2-15b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ad2a131eaaf341d0f76e4ae13723b3b77910f7427427d48132d3d80598a8774
|
| 3 |
+
size 6192384960
|
dolphincoder-starcoder2-15b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92cec760bb2aaa6b4a843c3de59fc6617b2665ec8471c25aa5e895510ec49491
|
| 3 |
+
size 8964755616
|
dolphincoder-starcoder2-15b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c62f04e71e7448cdb19a570d0c4329162632973149de330c719ab6473716862f
|
| 3 |
+
size 8100466848
|
dolphincoder-starcoder2-15b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c28e5cba5b17d4b086240dbb177306cd1cd31b4512402c4c14b3275b131c330b
|
| 3 |
+
size 6985896096
|
dolphincoder-starcoder2-15b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:654d1fa62f9134029020b1b50d75d28ff931060ccc0c5bff39ae098f4a3217ff
|
| 3 |
+
size 9859618560
|
dolphincoder-starcoder2-15b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30e8fa3517d250513a35eecf9a59acf6442de344be1f712e3b203ddafefbad07
|
| 3 |
+
size 9255147264
|
dolphincoder-starcoder2-15b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c88ff8312a893230f03599e0c228053a3f3830884ea4a13a75a7a095c2a7a256
|
| 3 |
+
size 11430911232
|
dolphincoder-starcoder2-15b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc37de4c358fd529a0dbc95a9350d004349edd8b30860f7db38acae4b39fd8aa
|
| 3 |
+
size 11021475072
|
dolphincoder-starcoder2-15b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17807a04d733a9954e5f02281a0a93cd24322da62ce0923a4f55e43066f0c01f
|
| 3 |
+
size 13100409696
|
dolphincoder-starcoder2-15b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a038406126d07dd3f07f9b09282943fdbe04cc376f965d650e102a38ed352fc5
|
| 3 |
+
size 16964549280
|