Instructions to use mradermacher/CodeParrotFT-MyDataset-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/CodeParrotFT-MyDataset-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/CodeParrotFT-MyDataset-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/CodeParrotFT-MyDataset-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/CodeParrotFT-MyDataset-GGUF", filename="CodeParrotFT-MyDataset.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/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/CodeParrotFT-MyDataset-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/CodeParrotFT-MyDataset-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/CodeParrotFT-MyDataset-GGUF with Ollama:
ollama run hf.co/mradermacher/CodeParrotFT-MyDataset-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-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/CodeParrotFT-MyDataset-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/CodeParrotFT-MyDataset-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/CodeParrotFT-MyDataset-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/CodeParrotFT-MyDataset-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/CodeParrotFT-MyDataset-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.CodeParrotFT-MyDataset-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +12 -0
- CodeParrotFT-MyDataset.IQ4_XS.gguf +3 -0
- CodeParrotFT-MyDataset.Q2_K.gguf +3 -0
- CodeParrotFT-MyDataset.Q3_K_L.gguf +3 -0
- CodeParrotFT-MyDataset.Q3_K_M.gguf +3 -0
- CodeParrotFT-MyDataset.Q3_K_S.gguf +3 -0
- CodeParrotFT-MyDataset.Q4_K_M.gguf +3 -0
- CodeParrotFT-MyDataset.Q4_K_S.gguf +3 -0
- CodeParrotFT-MyDataset.Q5_K_M.gguf +3 -0
- CodeParrotFT-MyDataset.Q5_K_S.gguf +3 -0
- CodeParrotFT-MyDataset.Q6_K.gguf +3 -0
- CodeParrotFT-MyDataset.Q8_0.gguf +3 -0
- CodeParrotFT-MyDataset.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 |
+
CodeParrotFT-MyDataset.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
CodeParrotFT-MyDataset.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
CodeParrotFT-MyDataset.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
CodeParrotFT-MyDataset.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
CodeParrotFT-MyDataset.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
CodeParrotFT-MyDataset.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
CodeParrotFT-MyDataset.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
CodeParrotFT-MyDataset.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
CodeParrotFT-MyDataset.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
CodeParrotFT-MyDataset.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
CodeParrotFT-MyDataset.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
CodeParrotFT-MyDataset.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
CodeParrotFT-MyDataset.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e985961a9698ea29862b49833d065184e006256ff534b73039523197773fe0eb
|
| 3 |
+
size 91312800
|
CodeParrotFT-MyDataset.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c69b646be8202cc91ab91dfb33ac54fac3062f34129b673c9be319ce2d08ff4c
|
| 3 |
+
size 88202400
|
CodeParrotFT-MyDataset.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2bd40fd1a39c39e02ff3f53f8b18c004537f74ff24d92be87ac70edf7caa1ae
|
| 3 |
+
size 97533600
|
CodeParrotFT-MyDataset.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:559d2c2bfe85111669e2ca3241d78511c2464e2b8b2c5d6a11e54b553d43641a
|
| 3 |
+
size 93510816
|
CodeParrotFT-MyDataset.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68d5de632982ef581deaf0b3011da3698684141e2a8356925f508e743c5715d1
|
| 3 |
+
size 88202400
|
CodeParrotFT-MyDataset.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75b1e1d5429e730350b68dadd5127384c6f00d9d25233ece6fe829f633e3bf08
|
| 3 |
+
size 105454752
|
CodeParrotFT-MyDataset.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea5449c1bb8612c74cf16ece96b1b34b2c2c412005276e1ddd58d3c8452287dd
|
| 3 |
+
size 102040224
|
CodeParrotFT-MyDataset.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90c0230df9b81bb16c1091271dfd4c8161ccf91afe75fba37db9b980f5c771a6
|
| 3 |
+
size 112104096
|
CodeParrotFT-MyDataset.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff13b6eddae77e3171a8f42df0a059550c6165abb781f6ebf702aef0ad8afbf9
|
| 3 |
+
size 109975200
|
CodeParrotFT-MyDataset.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5f2ff24ce7375e20650c463afeedcece0dea40d5084619754cfda1f95506412
|
| 3 |
+
size 138383520
|
CodeParrotFT-MyDataset.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8714e564a34d4bcc5433b663ea66899bd4f734b7f07faba2763f09f05bc11181
|
| 3 |
+
size 144811680
|
CodeParrotFT-MyDataset.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30b0bae206531596de6c6f2698fbfb12ccb4998008cb2be447a531d1c6543451
|
| 3 |
+
size 270886560
|