Image-to-Text
Transformers
GGUF
Vietnamese
English
Chinese
erax
multimodal
erax-vl-7B
insurance
ocr
vietnamese
bcg
conversational
Instructions to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf", dtype="auto") - llama-cpp-python
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf", filename="EraX-VL-7B-V1.5.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "\"cats.jpg\"" )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.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 chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.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 chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.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 chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.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 chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M
Use Docker
docker model run hf.co/chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf with Ollama:
ollama run hf.co/chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M
- Unsloth Studio
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.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 chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.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 chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf to start chatting
- Atomic Chat new
- Docker Model Runner
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf with Docker Model Runner:
docker model run hf.co/chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M
- Lemonade
How to use chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull chiakelvin/EraX-VL-7B-V1.5.Q5_K_M.gguf:Q4_K_M
Run and chat with the model
lemonade run user.EraX-VL-7B-V1.5.Q5_K_M.gguf-Q4_K_M
List all available models
lemonade list
Commit ·
995d5f2
0
Parent(s):
Duplicate from mradermacher/EraX-VL-7B-V1.5-GGUF
Browse filesCo-authored-by: team mradermacher <mradermacher@users.noreply.huggingface.co>
- .gitattributes +48 -0
- EraX-VL-7B-V1.5.IQ4_XS.gguf +3 -0
- EraX-VL-7B-V1.5.Q2_K.gguf +3 -0
- EraX-VL-7B-V1.5.Q3_K_L.gguf +3 -0
- EraX-VL-7B-V1.5.Q3_K_M.gguf +3 -0
- EraX-VL-7B-V1.5.Q3_K_S.gguf +3 -0
- EraX-VL-7B-V1.5.Q4_K_M.gguf +3 -0
- EraX-VL-7B-V1.5.Q4_K_S.gguf +3 -0
- EraX-VL-7B-V1.5.Q5_K_M.gguf +3 -0
- EraX-VL-7B-V1.5.Q5_K_S.gguf +3 -0
- EraX-VL-7B-V1.5.Q6_K.gguf +3 -0
- EraX-VL-7B-V1.5.Q8_0.gguf +3 -0
- EraX-VL-7B-V1.5.f16.gguf +3 -0
- EraX-VL-7B-V1.5.mmproj-fp16.gguf +3 -0
- README.md +76 -0
.gitattributes
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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 |
+
EraX-VL-7B-V1.5.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
EraX-VL-7B-V1.5.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
EraX-VL-7B-V1.5.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
EraX-VL-7B-V1.5.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
EraX-VL-7B-V1.5.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
EraX-VL-7B-V1.5.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
EraX-VL-7B-V1.5.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
EraX-VL-7B-V1.5.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
EraX-VL-7B-V1.5.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
EraX-VL-7B-V1.5.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
EraX-VL-7B-V1.5.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
EraX-VL-7B-V1.5.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
EraX-VL-7B-V1.5.mmproj-fp16.gguf filter=lfs diff=lfs merge=lfs -text
|
EraX-VL-7B-V1.5.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5656dd1bf8bcb5e4364baf2700ce122a1cc4f3da332b5b408b34a4d679ffc838
|
| 3 |
+
size 4250297792
|
EraX-VL-7B-V1.5.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c2735e7bdafd4c294840290aef74274c05a2dd08ed2db0dd5311250625fef7d
|
| 3 |
+
size 3015939520
|
EraX-VL-7B-V1.5.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:237cf2d76e56931a4e89f7e2fa61e6292a842cb0b86c8b25d24e610540269f27
|
| 3 |
+
size 4088458688
|
EraX-VL-7B-V1.5.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:893fecf5840ca32278bfbe176491ca7ae0008075d3a6ae4df017ae65acf4c008
|
| 3 |
+
size 3808390592
|
EraX-VL-7B-V1.5.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc6b3177d4caec5a932a8bf8a09e77e30a34e55bacb5047a7fd691857cd199df
|
| 3 |
+
size 3492367808
|
EraX-VL-7B-V1.5.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38ee847d1785ca9dde423e638f765824dc440d5b2993a06c3d7f7a28f2d38ea5
|
| 3 |
+
size 4683072960
|
EraX-VL-7B-V1.5.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f05c05cf4a22b8c9cdd6adea57a75e51c56ccc1c83a2973444268bef46ee44ea
|
| 3 |
+
size 4457768384
|
EraX-VL-7B-V1.5.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb655353fb1fc207e70e2f57dd6a61608e291074067056a195660bccb82bdc22
|
| 3 |
+
size 5444830656
|
EraX-VL-7B-V1.5.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bffde09340be0c999c4385af7d09f5fc7729dc7a419e386b784fe262b792295c
|
| 3 |
+
size 5315175872
|
EraX-VL-7B-V1.5.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79240a0d62291118b0661f134f1fa6b026fd26ddae88cec2e6d450cecc9a9a58
|
| 3 |
+
size 6254198208
|
EraX-VL-7B-V1.5.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10d58da96c4dcf137d9ee79980eb1acb4d5debaf34e0d8521569c72a5e64501f
|
| 3 |
+
size 8098524608
|
EraX-VL-7B-V1.5.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:950f876250202c97c3bcb78ca1b12d27e2a33f665efaf970134d0d0de015d350
|
| 3 |
+
size 15237852608
|
EraX-VL-7B-V1.5.mmproj-fp16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c128a5f6a2579cef76fe655ef6bcdeef38d33564676c7193eaaf8fc11d01f74e
|
| 3 |
+
size 1352635904
|
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: erax-ai/EraX-VL-7B-V1.5
|
| 3 |
+
language:
|
| 4 |
+
- vi
|
| 5 |
+
- en
|
| 6 |
+
- zh
|
| 7 |
+
library_name: transformers
|
| 8 |
+
license: apache-2.0
|
| 9 |
+
quantized_by: mradermacher
|
| 10 |
+
tags:
|
| 11 |
+
- erax
|
| 12 |
+
- multimodal
|
| 13 |
+
- erax-vl-7B
|
| 14 |
+
- insurance
|
| 15 |
+
- ocr
|
| 16 |
+
- vietnamese
|
| 17 |
+
- bcg
|
| 18 |
+
- image-to-text
|
| 19 |
+
---
|
| 20 |
+
## About
|
| 21 |
+
|
| 22 |
+
<!-- ### quantize_version: 2 -->
|
| 23 |
+
<!-- ### output_tensor_quantised: 1 -->
|
| 24 |
+
<!-- ### convert_type: hf -->
|
| 25 |
+
<!-- ### vocab_type: -->
|
| 26 |
+
<!-- ### tags: nicoboss -->
|
| 27 |
+
static quants of https://huggingface.co/erax-ai/EraX-VL-7B-V1.5
|
| 28 |
+
|
| 29 |
+
<!-- provided-files -->
|
| 30 |
+
weighted/imatrix quants seem not to be available (by me) at this time. If they do not show up a week or so after the static ones, I have probably not planned for them. Feel free to request them by opening a Community Discussion.
|
| 31 |
+
## Usage
|
| 32 |
+
|
| 33 |
+
If you are unsure how to use GGUF files, refer to one of [TheBloke's
|
| 34 |
+
READMEs](https://huggingface.co/TheBloke/KafkaLM-70B-German-V0.1-GGUF) for
|
| 35 |
+
more details, including on how to concatenate multi-part files.
|
| 36 |
+
|
| 37 |
+
## Provided Quants
|
| 38 |
+
|
| 39 |
+
(sorted by size, not necessarily quality. IQ-quants are often preferable over similar sized non-IQ quants)
|
| 40 |
+
|
| 41 |
+
| Link | Type | Size/GB | Notes |
|
| 42 |
+
|:-----|:-----|--------:|:------|
|
| 43 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.mmproj-fp16.gguf) | mmproj-fp16 | 1.5 | multi-modal supplement |
|
| 44 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q2_K.gguf) | Q2_K | 3.1 | |
|
| 45 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q3_K_S.gguf) | Q3_K_S | 3.6 | |
|
| 46 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q3_K_M.gguf) | Q3_K_M | 3.9 | lower quality |
|
| 47 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q3_K_L.gguf) | Q3_K_L | 4.2 | |
|
| 48 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.IQ4_XS.gguf) | IQ4_XS | 4.4 | |
|
| 49 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q4_K_S.gguf) | Q4_K_S | 4.6 | fast, recommended |
|
| 50 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q4_K_M.gguf) | Q4_K_M | 4.8 | fast, recommended |
|
| 51 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q5_K_S.gguf) | Q5_K_S | 5.4 | |
|
| 52 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q5_K_M.gguf) | Q5_K_M | 5.5 | |
|
| 53 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q6_K.gguf) | Q6_K | 6.4 | very good quality |
|
| 54 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.Q8_0.gguf) | Q8_0 | 8.2 | fast, best quality |
|
| 55 |
+
| [GGUF](https://huggingface.co/mradermacher/EraX-VL-7B-V1.5-GGUF/resolve/main/EraX-VL-7B-V1.5.f16.gguf) | f16 | 15.3 | 16 bpw, overkill |
|
| 56 |
+
|
| 57 |
+
Here is a handy graph by ikawrakow comparing some lower-quality quant
|
| 58 |
+
types (lower is better):
|
| 59 |
+
|
| 60 |
+

|
| 61 |
+
|
| 62 |
+
And here are Artefact2's thoughts on the matter:
|
| 63 |
+
https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9
|
| 64 |
+
|
| 65 |
+
## FAQ / Model Request
|
| 66 |
+
|
| 67 |
+
See https://huggingface.co/mradermacher/model_requests for some answers to
|
| 68 |
+
questions you might have and/or if you want some other model quantized.
|
| 69 |
+
|
| 70 |
+
## Thanks
|
| 71 |
+
|
| 72 |
+
I thank my company, [nethype GmbH](https://www.nethype.de/), for letting
|
| 73 |
+
me use its servers and providing upgrades to my workstation to enable
|
| 74 |
+
this work in my free time. Additional thanks to [@nicoboss](https://huggingface.co/nicoboss) for giving me access to his private supercomputer, enabling me to provide many more imatrix quants, at much higher quality, than I would otherwise be able to.
|
| 75 |
+
|
| 76 |
+
<!-- end -->
|