Transformers
GGUF
English
Code Generation
Logical Reasoning
Problem Solving
Text Generation
AI Programming Assistant
Instructions to use mradermacher/The-Trinity-Coder-7B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/The-Trinity-Coder-7B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/The-Trinity-Coder-7B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/The-Trinity-Coder-7B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/The-Trinity-Coder-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/The-Trinity-Coder-7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/The-Trinity-Coder-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/The-Trinity-Coder-7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/The-Trinity-Coder-7B-GGUF with Ollama:
ollama run hf.co/mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/The-Trinity-Coder-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/The-Trinity-Coder-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/The-Trinity-Coder-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/The-Trinity-Coder-7B-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/The-Trinity-Coder-7B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/The-Trinity-Coder-7B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/The-Trinity-Coder-7B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.The-Trinity-Coder-7B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from marco
Browse files- .gitattributes +12 -0
- The-Trinity-Coder-7B.IQ4_XS.gguf +3 -0
- The-Trinity-Coder-7B.Q2_K.gguf +3 -0
- The-Trinity-Coder-7B.Q3_K_L.gguf +3 -0
- The-Trinity-Coder-7B.Q3_K_M.gguf +3 -0
- The-Trinity-Coder-7B.Q3_K_S.gguf +3 -0
- The-Trinity-Coder-7B.Q4_K_M.gguf +3 -0
- The-Trinity-Coder-7B.Q4_K_S.gguf +3 -0
- The-Trinity-Coder-7B.Q5_K_M.gguf +3 -0
- The-Trinity-Coder-7B.Q5_K_S.gguf +3 -0
- The-Trinity-Coder-7B.Q6_K.gguf +3 -0
- The-Trinity-Coder-7B.Q8_0.gguf +3 -0
- The-Trinity-Coder-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 |
+
The-Trinity-Coder-7B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
The-Trinity-Coder-7B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
The-Trinity-Coder-7B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
The-Trinity-Coder-7B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
The-Trinity-Coder-7B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
The-Trinity-Coder-7B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
The-Trinity-Coder-7B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
The-Trinity-Coder-7B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
The-Trinity-Coder-7B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
The-Trinity-Coder-7B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
The-Trinity-Coder-7B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
The-Trinity-Coder-7B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
The-Trinity-Coder-7B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c53cc7339e9b95f30e0701c2de807cb37121b8366a44f11a75af930188348b09
|
| 3 |
+
size 3944389248
|
The-Trinity-Coder-7B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e9ecdad4de6e63ddcefd01b6722ca6638105ef757196866d98cb1ff449dc360
|
| 3 |
+
size 2719242880
|
The-Trinity-Coder-7B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71e01842a20e407d6b595a796fb5e0089d458ac2e9729cfd0cfe1a5fd1d431d2
|
| 3 |
+
size 3822025344
|
The-Trinity-Coder-7B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:463803eb30c9f77f508d860d6a0d308c1f1dd1ac1999168c5d2156123d4ab45c
|
| 3 |
+
size 3518986880
|
The-Trinity-Coder-7B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b23a2107c4260560ee0565a0a565f7f7bbf3b87f77e17ae7443341f0e9f208f
|
| 3 |
+
size 3164568192
|
The-Trinity-Coder-7B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a54983cfc190221199b7abfc2f9323c3882f4b766d37fa16d18cda35a677d160
|
| 3 |
+
size 4368439936
|
The-Trinity-Coder-7B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae74ef0e23fb6d6b6b55d1f37296692d0e49487576b72c0e196175035c164e0a
|
| 3 |
+
size 4140374656
|
The-Trinity-Coder-7B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:387c16fb3c5c99cadd4156a07625277ad016a83cdaa06eeb7ca02d437b2a4047
|
| 3 |
+
size 5131410048
|
The-Trinity-Coder-7B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92185ab1651cf167595b6f2cecb373801537b6eb6dcc05394a3f46bb29a5215b
|
| 3 |
+
size 4997716608
|
The-Trinity-Coder-7B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99cbf145ef1fc9c8710859dec281be86945b8baf403fd0e2fe5addd7854783d2
|
| 3 |
+
size 5942065792
|
The-Trinity-Coder-7B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb30b6260047fbc0feaf047c6e19d9f897bec727c5e877bbf96df33ea228925a
|
| 3 |
+
size 7695858304
|
The-Trinity-Coder-7B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6b2c7d3c7ed825dd37c197a18c1d20ec81089d220976c74f6721fa3ab79a5ce
|
| 3 |
+
size 14484732544
|