Instructions to use mradermacher/Question-To-Code-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Question-To-Code-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Question-To-Code-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Question-To-Code-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Question-To-Code-GGUF", filename="Question-To-Code.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use mradermacher/Question-To-Code-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/Question-To-Code-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Question-To-Code-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/Question-To-Code-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Question-To-Code-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/Question-To-Code-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Question-To-Code-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/Question-To-Code-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Question-To-Code-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Question-To-Code-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Question-To-Code-GGUF with Ollama:
ollama run hf.co/mradermacher/Question-To-Code-GGUF:Q4_K_M
- Unsloth Studio new
How to use mradermacher/Question-To-Code-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/Question-To-Code-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/Question-To-Code-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/Question-To-Code-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/Question-To-Code-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Question-To-Code-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Question-To-Code-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Question-To-Code-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Question-To-Code-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +12 -0
- Question-To-Code.IQ4_XS.gguf +3 -0
- Question-To-Code.Q2_K.gguf +3 -0
- Question-To-Code.Q3_K_L.gguf +3 -0
- Question-To-Code.Q3_K_M.gguf +3 -0
- Question-To-Code.Q3_K_S.gguf +3 -0
- Question-To-Code.Q4_K_M.gguf +3 -0
- Question-To-Code.Q4_K_S.gguf +3 -0
- Question-To-Code.Q5_K_M.gguf +3 -0
- Question-To-Code.Q5_K_S.gguf +3 -0
- Question-To-Code.Q6_K.gguf +3 -0
- Question-To-Code.Q8_0.gguf +3 -0
- Question-To-Code.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 |
+
Question-To-Code.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Question-To-Code.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Question-To-Code.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Question-To-Code.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Question-To-Code.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Question-To-Code.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Question-To-Code.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Question-To-Code.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Question-To-Code.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Question-To-Code.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Question-To-Code.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Question-To-Code.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Question-To-Code.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23be44d03ae85727bc949a3f39cc0da3ce342904473e77896d8413db1e520f5e
|
| 3 |
+
size 902180832
|
Question-To-Code.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7612e4436f43a1c0d38663f8cfdc43f5adadbf2ea438c718c4e32970da5c72ff
|
| 3 |
+
size 676302816
|
Question-To-Code.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2024e218ee90df1c3f4b5db27a1249130ffc8c563494373ac73301633c171a7f
|
| 3 |
+
size 880160736
|
Question-To-Code.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83c0b617958aa003862e38e9264556f67455c4b34f44d1d70adf7b155bf55b2c
|
| 3 |
+
size 824176608
|
Question-To-Code.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:134682b5868164a64a0000f5c031fb395d92ce1a63f914bc93aa3ee6006f6230
|
| 3 |
+
size 760942560
|
Question-To-Code.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a46b5dfd6b2be980e72464021237b952309688e350bbde34ff1ab266b27006dd
|
| 3 |
+
size 986046432
|
Question-To-Code.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:968241e218bec5aa25463f24b6a22f611d17ee9cdf34c3eaab1472dc586c31b5
|
| 3 |
+
size 940310496
|
Question-To-Code.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46be0bf20e2ea43be878b0c349c8a3d1da37b6a1b1d93494f8105a2600d263a9
|
| 3 |
+
size 1125048288
|
Question-To-Code.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9cf6c3eb66cde91f43247581ff4087001b431a0dcdcbcc58fa20ac7b2c19474
|
| 3 |
+
size 1098727392
|
Question-To-Code.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b50fec8f017323e50988b12561290866680f032cb4cee452cdace9278d2d871a
|
| 3 |
+
size 1272737760
|
Question-To-Code.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8ebf46d69621f7e66c6d4c83bdfacfc9f2dcf7e8356deec85d92e156d105791
|
| 3 |
+
size 1646570976
|
Question-To-Code.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e4b0cbb9ea910659bf0b6aebeb26e3dbfeebd5d7851176dc710312b4f850be3
|
| 3 |
+
size 3093667296
|