Instructions to use tensorblock/gpt_test-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/gpt_test-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 tensorblock/gpt_test-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/gpt_test-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/gpt_test-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/gpt_test-GGUF:Q2_K
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 tensorblock/gpt_test-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/gpt_test-GGUF:Q2_K
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 tensorblock/gpt_test-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/gpt_test-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/gpt_test-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/gpt_test-GGUF with Ollama:
ollama run hf.co/tensorblock/gpt_test-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/gpt_test-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 tensorblock/gpt_test-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 tensorblock/gpt_test-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/gpt_test-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/gpt_test-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/gpt_test-GGUF:Q2_K
- Lemonade
How to use tensorblock/gpt_test-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/gpt_test-GGUF:Q2_K
Run and chat with the model
lemonade run user.gpt_test-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +80 -0
- gpt_test-Q2_K.gguf +3 -0
- gpt_test-Q3_K_L.gguf +3 -0
- gpt_test-Q3_K_M.gguf +3 -0
- gpt_test-Q3_K_S.gguf +3 -0
- gpt_test-Q4_0.gguf +3 -0
- gpt_test-Q4_K_M.gguf +3 -0
- gpt_test-Q4_K_S.gguf +3 -0
- gpt_test-Q5_0.gguf +3 -0
- gpt_test-Q5_K_M.gguf +3 -0
- gpt_test-Q5_K_S.gguf +3 -0
- gpt_test-Q6_K.gguf +3 -0
- gpt_test-Q8_0.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 |
+
gpt_test-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
gpt_test-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
gpt_test-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
gpt_test-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
gpt_test-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
gpt_test-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
gpt_test-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
gpt_test-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
gpt_test-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
gpt_test-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
gpt_test-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
gpt_test-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
base_model: VincentG1234/gpt_test
|
| 4 |
+
tags:
|
| 5 |
+
- generated_from_trainer
|
| 6 |
+
- TensorBlock
|
| 7 |
+
- GGUF
|
| 8 |
+
model-index:
|
| 9 |
+
- name: gpt_test
|
| 10 |
+
results: []
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 14 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 15 |
+
</div>
|
| 16 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 17 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 18 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 19 |
+
Feedback and support: TensorBlock's <a href="https://x.com/tensorblock_aoi">Twitter/X</a>, <a href="https://t.me/TensorBlock">Telegram Group</a> and <a href="https://x.com/tensorblock_aoi">Discord server</a>
|
| 20 |
+
</p>
|
| 21 |
+
</div>
|
| 22 |
+
</div>
|
| 23 |
+
|
| 24 |
+
## VincentG1234/gpt_test - GGUF
|
| 25 |
+
|
| 26 |
+
This repo contains GGUF format model files for [VincentG1234/gpt_test](https://huggingface.co/VincentG1234/gpt_test).
|
| 27 |
+
|
| 28 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4242](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 29 |
+
|
| 30 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 31 |
+
<a href="https://tensorblock.co/waitlist/client" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
| 32 |
+
Run them on the TensorBlock client using your local machine ↗
|
| 33 |
+
</a>
|
| 34 |
+
</div>
|
| 35 |
+
|
| 36 |
+
## Prompt template
|
| 37 |
+
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Model file specification
|
| 43 |
+
|
| 44 |
+
| Filename | Quant type | File Size | Description |
|
| 45 |
+
| -------- | ---------- | --------- | ----------- |
|
| 46 |
+
| [gpt_test-Q2_K.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q2_K.gguf) | Q2_K | 0.043 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 47 |
+
| [gpt_test-Q3_K_S.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q3_K_S.gguf) | Q3_K_S | 0.047 GB | very small, high quality loss |
|
| 48 |
+
| [gpt_test-Q3_K_M.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q3_K_M.gguf) | Q3_K_M | 0.049 GB | very small, high quality loss |
|
| 49 |
+
| [gpt_test-Q3_K_L.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q3_K_L.gguf) | Q3_K_L | 0.051 GB | small, substantial quality loss |
|
| 50 |
+
| [gpt_test-Q4_0.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q4_0.gguf) | Q4_0 | 0.054 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 51 |
+
| [gpt_test-Q4_K_S.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q4_K_S.gguf) | Q4_K_S | 0.054 GB | small, greater quality loss |
|
| 52 |
+
| [gpt_test-Q4_K_M.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q4_K_M.gguf) | Q4_K_M | 0.056 GB | medium, balanced quality - recommended |
|
| 53 |
+
| [gpt_test-Q5_0.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q5_0.gguf) | Q5_0 | 0.060 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 54 |
+
| [gpt_test-Q5_K_S.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q5_K_S.gguf) | Q5_K_S | 0.060 GB | large, low quality loss - recommended |
|
| 55 |
+
| [gpt_test-Q5_K_M.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q5_K_M.gguf) | Q5_K_M | 0.062 GB | large, very low quality loss - recommended |
|
| 56 |
+
| [gpt_test-Q6_K.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q6_K.gguf) | Q6_K | 0.067 GB | very large, extremely low quality loss |
|
| 57 |
+
| [gpt_test-Q8_0.gguf](https://huggingface.co/tensorblock/gpt_test-GGUF/blob/main/gpt_test-Q8_0.gguf) | Q8_0 | 0.086 GB | very large, extremely low quality loss - not recommended |
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
## Downloading instruction
|
| 61 |
+
|
| 62 |
+
### Command line
|
| 63 |
+
|
| 64 |
+
Firstly, install Huggingface Client
|
| 65 |
+
|
| 66 |
+
```shell
|
| 67 |
+
pip install -U "huggingface_hub[cli]"
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
Then, downoad the individual model file the a local directory
|
| 71 |
+
|
| 72 |
+
```shell
|
| 73 |
+
huggingface-cli download tensorblock/gpt_test-GGUF --include "gpt_test-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 77 |
+
|
| 78 |
+
```shell
|
| 79 |
+
huggingface-cli download tensorblock/gpt_test-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 80 |
+
```
|
gpt_test-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af053a27012ddaf735b61cf07e60c1e6e2ebaa937aab25f41f677cb8f4d61280
|
| 3 |
+
size 42960640
|
gpt_test-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c37c31e58e2c75e1323d90db14962f47a58f01973ed088add40c296a7c1c737
|
| 3 |
+
size 50603872
|
gpt_test-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a276b1e33b8a49b79a9a41abbd5fcfe4306e1a8f4e290e64abfa14baa5c8ae3c
|
| 3 |
+
size 49293152
|
gpt_test-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:611db25b642ba9eb306e0a9ff4ee8103a738b1096ac697b688e198f7b3da774b
|
| 3 |
+
size 47064928
|
gpt_test-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e94560fe5c18dada0da856dc4032d021502e36dc5f7e776f03c855d5f3897c2e
|
| 3 |
+
size 53824736
|
gpt_test-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efa5ac5eeeedcf0874cf9af1d2db4500ecb3f8c2bd883ebde36339fca6961fa6
|
| 3 |
+
size 55692512
|
gpt_test-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6c46ad523f8e06edde9b2e2a6147daa27061698368e2ad8962251ef42f787af
|
| 3 |
+
size 53955808
|
gpt_test-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26ea1099b9d35e8cc27d4dd51d8907b96cfe1a010004eaa8a51557790f1c4945
|
| 3 |
+
size 60186912
|
gpt_test-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4e7abac0b7769e2dc56c4e0546d9951dfc640d71fab09f00cb37c758e951009
|
| 3 |
+
size 61579552
|
gpt_test-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7a7ea6fcd5acdae20ddbb2c528700309dd499087e2cb54f873b796a949dbc76
|
| 3 |
+
size 60186912
|
gpt_test-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f3d08b93ed0068b10a9765f8248d417cc298c5e313359cb64ba9f5ca8a25974
|
| 3 |
+
size 66946752
|
gpt_test-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31fccdbe0c48cd2982ad9aeb6274442318d985a6189ead31fd095bb89750e679
|
| 3 |
+
size 85505280
|