AutoCoder-IMat-GGUF / README.md
legraphista's picture
Upload README.md with huggingface_hub
0146fb1 verified
|
raw
history blame
6.36 kB
metadata
base_model: Bin12345/AutoCoder
inference: false
library_name: gguf
license: apache-2.0
pipeline_tag: text-generation
quantized_by: legraphista
tags:
  - quantized
  - GGUF
  - imatrix
  - quantization
  - imat
  - imatrix
  - static

AutoCoder-IMat-GGUF

Llama.cpp imatrix quantization of Bin12345/AutoCoder

Original Model: Bin12345/AutoCoder
Original dtype: BF16 (bfloat16)
Quantized by: llama.cpp b3010
IMatrix dataset: here


Files

IMatrix

Status: ⏳ Processing
Link: here

Common Quants

Filename Quant type File Size Status Uses IMatrix Is Split
AutoCoder.Q8_0.gguf Q8_0 35.43GB βœ… Available βšͺ Static πŸ“¦ No
AutoCoder.Q6_K.gguf Q6_K 27.36GB βœ… Available βšͺ Static πŸ“¦ No
AutoCoder.Q4_K Q4_K - ⏳ Processing 🟒 IMatrix -
AutoCoder.Q3_K Q3_K - ⏳ Processing 🟒 IMatrix -
AutoCoder.Q2_K Q2_K - ⏳ Processing 🟒 IMatrix -

All Quants

Filename Quant type File Size Status Uses IMatrix Is Split
AutoCoder.BF16/* BF16 66.69GB βœ… Available βšͺ Static βœ‚ Yes
AutoCoder.FP16 F16 - ⏳ Processing βšͺ Static -
AutoCoder.Q5_K Q5_K - ⏳ Processing βšͺ Static -
AutoCoder.Q5_K_S Q5_K_S - ⏳ Processing βšͺ Static -
AutoCoder.Q4_K_S Q4_K_S - ⏳ Processing 🟒 IMatrix -
AutoCoder.Q3_K_L Q3_K_L - ⏳ Processing 🟒 IMatrix -
AutoCoder.Q3_K_S Q3_K_S - ⏳ Processing 🟒 IMatrix -
AutoCoder.Q2_K_S Q2_K_S - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ4_NL IQ4_NL - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ4_XS IQ4_XS - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ3_M IQ3_M - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ3_S IQ3_S - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ3_XS IQ3_XS - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ3_XXS IQ3_XXS - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ2_M IQ2_M - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ2_S IQ2_S - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ2_XS IQ2_XS - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ2_XXS IQ2_XXS - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ1_M IQ1_M - ⏳ Processing 🟒 IMatrix -
AutoCoder.IQ1_S IQ1_S - ⏳ Processing 🟒 IMatrix -

Downloading using huggingface-cli

If you do not have hugginface-cli installed:

pip install -U "huggingface_hub[cli]"

Download the specific file you want:

huggingface-cli download legraphista/AutoCoder-IMat-GGUF --include "AutoCoder.Q8_0.gguf" --local-dir ./

If the model file is big, it has been split into multiple files. In order to download them all to a local folder, run:

huggingface-cli download legraphista/AutoCoder-IMat-GGUF --include "AutoCoder.Q8_0/*" --local-dir ./
# see FAQ for merging GGUF's

Inference

Simple chat template

Human: Can you provide ways to eat combinations of bananas and dragonfruits?
Assistant: Sure! Here are some ways to eat bananas and dragonfruits together:
 1. Banana and dragonfruit smoothie: Blend bananas and dragonfruits together with some milk and honey.
 2. Banana and dragonfruit salad: Mix sliced bananas and dragonfruits together with some lemon juice and honey.<|EOT|>
Human: What about solving an 2x + 3 = 7 equation?
Assistant: 

Chat template with system prompt

You are a helpful AI.
Human: Can you provide ways to eat combinations of bananas and dragonfruits?
Assistant: Sure! Here are some ways to eat bananas and dragonfruits together:
 1. Banana and dragonfruit smoothie: Blend bananas and dragonfruits together with some milk and honey.
 2. Banana and dragonfruit salad: Mix sliced bananas and dragonfruits together with some lemon juice and honey.<|EOT|>
Human: What about solving an 2x + 3 = 7 equation?
Assistant: 

Llama.cpp

llama.cpp/main -m AutoCoder.Q8_0.gguf --color -i -p "prompt here (according to the chat template)"

FAQ

Why is the IMatrix not applied everywhere?

According to this investigation, it appears that lower quantizations are the only ones that benefit from the imatrix input (as per hellaswag results).

How do I merge a split GGUF?

  1. Make sure you have gguf-split available
  2. Locate your GGUF chunks folder (ex: AutoCoder.Q8_0)
  3. Run gguf-split --merge AutoCoder.Q8_0/AutoCoder.Q8_0-00001-of-XXXXX.gguf AutoCoder.Q8_0.gguf
    • Make sure to point gguf-split to the first chunk of the split.

Got a suggestion? Ping me @legraphista!