Instructions to use bartowski/aixcoder-7b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartowski/aixcoder-7b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/aixcoder-7b-GGUF", filename="aixcoder-7b-IQ1_M.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 bartowski/aixcoder-7b-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartowski/aixcoder-7b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/aixcoder-7b-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 bartowski/aixcoder-7b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/aixcoder-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 bartowski/aixcoder-7b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/aixcoder-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 bartowski/aixcoder-7b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/aixcoder-7b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/aixcoder-7b-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/aixcoder-7b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/aixcoder-7b-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/aixcoder-7b-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/bartowski/aixcoder-7b-GGUF:Q4_K_M
- Ollama
How to use bartowski/aixcoder-7b-GGUF with Ollama:
ollama run hf.co/bartowski/aixcoder-7b-GGUF:Q4_K_M
- Unsloth Studio new
How to use bartowski/aixcoder-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 bartowski/aixcoder-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 bartowski/aixcoder-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 bartowski/aixcoder-7b-GGUF to start chatting
- Docker Model Runner
How to use bartowski/aixcoder-7b-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/aixcoder-7b-GGUF:Q4_K_M
- Lemonade
How to use bartowski/aixcoder-7b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/aixcoder-7b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.aixcoder-7b-GGUF-Q4_K_M
List all available models
lemonade list
Llamacpp quants
Browse files- .gitattributes +23 -0
- README.md +70 -0
- aixcoder-7b-IQ1_M.gguf +3 -0
- aixcoder-7b-IQ1_S.gguf +3 -0
- aixcoder-7b-IQ2_M.gguf +3 -0
- aixcoder-7b-IQ2_S.gguf +3 -0
- aixcoder-7b-IQ2_XS.gguf +3 -0
- aixcoder-7b-IQ2_XXS.gguf +3 -0
- aixcoder-7b-IQ3_M.gguf +3 -0
- aixcoder-7b-IQ3_S.gguf +3 -0
- aixcoder-7b-IQ3_XS.gguf +3 -0
- aixcoder-7b-IQ3_XXS.gguf +3 -0
- aixcoder-7b-IQ4_NL.gguf +3 -0
- aixcoder-7b-IQ4_XS.gguf +3 -0
- aixcoder-7b-Q2_K.gguf +3 -0
- aixcoder-7b-Q3_K_L.gguf +3 -0
- aixcoder-7b-Q3_K_M.gguf +3 -0
- aixcoder-7b-Q3_K_S.gguf +3 -0
- aixcoder-7b-Q4_K_M.gguf +3 -0
- aixcoder-7b-Q4_K_S.gguf +3 -0
- aixcoder-7b-Q5_K_M.gguf +3 -0
- aixcoder-7b-Q5_K_S.gguf +3 -0
- aixcoder-7b-Q6_K.gguf +3 -0
- aixcoder-7b-Q8_0.gguf +3 -0
- aixcoder-7b.imatrix +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,26 @@ 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 |
+
aixcoder-7b-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
aixcoder-7b-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
aixcoder-7b-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
aixcoder-7b-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
aixcoder-7b-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
aixcoder-7b-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
aixcoder-7b-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
aixcoder-7b-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
aixcoder-7b-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
aixcoder-7b-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
aixcoder-7b-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
aixcoder-7b-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
aixcoder-7b-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
aixcoder-7b-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
aixcoder-7b-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
aixcoder-7b-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
aixcoder-7b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
aixcoder-7b-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
aixcoder-7b-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
aixcoder-7b-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
aixcoder-7b-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
aixcoder-7b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
aixcoder-7b.imatrix filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
|
| 3 |
+
quantized_by: bartowski
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
## Llamacpp Quantizations of aixcoder-7b
|
| 8 |
+
|
| 9 |
+
Using <a href="https://github.com/ggerganov/llama.cpp/">llama.cpp</a> release <a href="https://github.com/ggerganov/llama.cpp/releases/tag/b2636">b2636</a> for quantization.
|
| 10 |
+
|
| 11 |
+
Original model: https://huggingface.co/aiXcoder/aixcoder-7b
|
| 12 |
+
|
| 13 |
+
All quants made using imatrix option with dataset provided by Kalomaze [here](https://github.com/ggerganov/llama.cpp/discussions/5263#discussioncomment-8395384)
|
| 14 |
+
|
| 15 |
+
## Prompt format
|
| 16 |
+
|
| 17 |
+
No prompt template for this model.
|
| 18 |
+
|
| 19 |
+
## Download a file (not the whole branch) from below:
|
| 20 |
+
|
| 21 |
+
| Filename | Quant type | File Size | Description |
|
| 22 |
+
| -------- | ---------- | --------- | ----------- |
|
| 23 |
+
| [aixcoder-7b-Q8_0.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q8_0.gguf) | Q8_0 | 7.89GB | Extremely high quality, generally unneeded but max available quant. |
|
| 24 |
+
| [aixcoder-7b-Q6_K.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q6_K.gguf) | Q6_K | 6.55GB | Very high quality, near perfect, *recommended*. |
|
| 25 |
+
| [aixcoder-7b-Q5_K_M.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q5_K_M.gguf) | Q5_K_M | 5.56GB | High quality, *recommended*. |
|
| 26 |
+
| [aixcoder-7b-Q5_K_S.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q5_K_S.gguf) | Q5_K_S | 5.25GB | High quality, *recommended*. |
|
| 27 |
+
| [aixcoder-7b-Q4_K_M.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q4_K_M.gguf) | Q4_K_M | 4.84GB | Good quality, uses about 4.83 bits per weight, *recommended*. |
|
| 28 |
+
| [aixcoder-7b-Q4_K_S.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q4_K_S.gguf) | Q4_K_S | 4.48GB | Slightly lower quality with more space savings, *recommended*. |
|
| 29 |
+
| [aixcoder-7b-IQ4_NL.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ4_NL.gguf) | IQ4_NL | 4.25GB | Decent quality, slightly smaller than Q4_K_S with similar performance *recommended*. |
|
| 30 |
+
| [aixcoder-7b-IQ4_XS.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ4_XS.gguf) | IQ4_XS | 4.08GB | Decent quality, smaller than Q4_K_S with similar performance, *recommended*. |
|
| 31 |
+
| [aixcoder-7b-Q3_K_L.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q3_K_L.gguf) | Q3_K_L | 4.05GB | Lower quality but usable, good for low RAM availability. |
|
| 32 |
+
| [aixcoder-7b-Q3_K_M.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q3_K_M.gguf) | Q3_K_M | 3.86GB | Even lower quality. |
|
| 33 |
+
| [aixcoder-7b-IQ3_M.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ3_M.gguf) | IQ3_M | 3.64GB | Medium-low quality, new method with decent performance comparable to Q3_K_M. |
|
| 34 |
+
| [aixcoder-7b-IQ3_S.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ3_S.gguf) | IQ3_S | 3.54GB | Lower quality, new method with decent performance, recommended over Q3_K_S quant, same size with better performance. |
|
| 35 |
+
| [aixcoder-7b-Q3_K_S.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q3_K_S.gguf) | Q3_K_S | 3.52GB | Low quality, not recommended. |
|
| 36 |
+
| [aixcoder-7b-IQ3_XS.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ3_XS.gguf) | IQ3_XS | 3.37GB | Lower quality, new method with decent performance, slightly better than Q3_K_S. |
|
| 37 |
+
| [aixcoder-7b-IQ3_XXS.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ3_XXS.gguf) | IQ3_XXS | 3.26GB | Lower quality, new method with decent performance, comparable to Q3 quants. |
|
| 38 |
+
| [aixcoder-7b-Q2_K.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-Q2_K.gguf) | Q2_K | 3.07GB | Very low quality but surprisingly usable. |
|
| 39 |
+
| [aixcoder-7b-IQ2_M.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ2_M.gguf) | IQ2_M | 3.02GB | Very low quality, uses SOTA techniques to also be surprisingly usable. |
|
| 40 |
+
| [aixcoder-7b-IQ2_S.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ2_S.gguf) | IQ2_S | 2.88GB | Very low quality, uses SOTA techniques to be usable. |
|
| 41 |
+
| [aixcoder-7b-IQ2_XS.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ2_XS.gguf) | IQ2_XS | 2.79GB | Very low quality, uses SOTA techniques to be usable. |
|
| 42 |
+
| [aixcoder-7b-IQ2_XXS.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ2_XXS.gguf) | IQ2_XXS | 2.63GB | Lower quality, uses SOTA techniques to be usable. |
|
| 43 |
+
| [aixcoder-7b-IQ1_M.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ1_M.gguf) | IQ1_M | 2.46GB | Extremely low quality, *not* recommended. |
|
| 44 |
+
| [aixcoder-7b-IQ1_S.gguf](https://huggingface.co/bartowski/aixcoder-7b-GGUF/blob/main/aixcoder-7b-IQ1_S.gguf) | IQ1_S | 2.35GB | Extremely low quality, *not* recommended. |
|
| 45 |
+
|
| 46 |
+
## Which file should I choose?
|
| 47 |
+
|
| 48 |
+
A great write up with charts showing various performances is provided by Artefact2 [here](https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9)
|
| 49 |
+
|
| 50 |
+
The first thing to figure out is how big a model you can run. To do this, you'll need to figure out how much RAM and/or VRAM you have.
|
| 51 |
+
|
| 52 |
+
If you want your model running as FAST as possible, you'll want to fit the whole thing on your GPU's VRAM. Aim for a quant with a file size 1-2GB smaller than your GPU's total VRAM.
|
| 53 |
+
|
| 54 |
+
If you want the absolute maximum quality, add both your system RAM and your GPU's VRAM together, then similarly grab a quant with a file size 1-2GB Smaller than that total.
|
| 55 |
+
|
| 56 |
+
Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.
|
| 57 |
+
|
| 58 |
+
If you don't want to think too much, grab one of the K-quants. These are in format 'QX_K_X', like Q5_K_M.
|
| 59 |
+
|
| 60 |
+
If you want to get more into the weeds, you can check out this extremely useful feature chart:
|
| 61 |
+
|
| 62 |
+
[llama.cpp feature matrix](https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix)
|
| 63 |
+
|
| 64 |
+
But basically, if you're aiming for below Q4, and you're running cuBLAS (Nvidia) or rocBLAS (AMD), you should look towards the I-quants. These are in format IQX_X, like IQ3_M. These are newer and offer better performance for their size.
|
| 65 |
+
|
| 66 |
+
These I-quants can also be used on CPU and Apple Metal, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.
|
| 67 |
+
|
| 68 |
+
The I-quants are *not* compatible with Vulcan, which is also AMD, so if you have an AMD card double check if you're using the rocBLAS build or the Vulcan build. At the time of writing this, LM Studio has a preview with ROCm support, and other inference engines have specific builds for ROCm.
|
| 69 |
+
|
| 70 |
+
Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
|
aixcoder-7b-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06ad4f5f59d1b5b761da863537e3bfe3673ac20565de69bc47f420c84f9414b7
|
| 3 |
+
size 2463305248
|
aixcoder-7b-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91efabced6045baa98e6a78f339a7378484caee873f4ccc6f02b679e188a818d
|
| 3 |
+
size 2358709792
|
aixcoder-7b-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53249581bc68aeeb2804a6825bcb43c7c4ccf005a51d3c0438ddc91aa01f9165
|
| 3 |
+
size 3029274144
|
aixcoder-7b-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:404ced4e87bd64f01474d605b91769bd22618f2be64aad4207b1a833125bddcc
|
| 3 |
+
size 2889813536
|
aixcoder-7b-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87f014e8f3e736860049ab159705c374139c096d07be9f675bf5050d9c2ac089
|
| 3 |
+
size 2793868832
|
aixcoder-7b-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c672e4b2a13d212d933151d515f410eb37da2e625e2bc11272acdda823d13f35
|
| 3 |
+
size 2637631008
|
aixcoder-7b-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4053c61620a81b1b75ce55609878581778840bfd59f74a4e0fed04cbfa09c7d
|
| 3 |
+
size 3645050400
|
aixcoder-7b-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3c5670444e895d08a9412ec1383b2e06f836df9b7250f07a8cd180371c7a3d6
|
| 3 |
+
size 3544124960
|
aixcoder-7b-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e36458d87501c546b3efd2da611f3d8755f8a229664eae3a8dfaea7947a93f03
|
| 3 |
+
size 3379367456
|
aixcoder-7b-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b1720a08383ec015e015d1604104d7213a3dfe2872702f4f6c82dc0bff66885
|
| 3 |
+
size 3266252320
|
aixcoder-7b-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33bf66540850b56f0faf0c8b14ccda72812c2debe1495c2a743e05a77ba9c415
|
| 3 |
+
size 4251651616
|
aixcoder-7b-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b922a4bc3873683c50e4ff117a815bd54b09c4f3f487510908681119ce31474
|
| 3 |
+
size 4089122336
|
aixcoder-7b-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dad843999bf6dc6eab14d97786b7d32774dff51e993908e5998998272accbdfe
|
| 3 |
+
size 3070430752
|
aixcoder-7b-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22683992c6b41533378e0a4148cea848ed45595e61a1a63ab0c97c390c08934e
|
| 3 |
+
size 4054781472
|
aixcoder-7b-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1284cd6e501d91e0941b3a7368ac3a5848a8cd0db568df2f70e78e2c335fdc7b
|
| 3 |
+
size 3860860448
|
aixcoder-7b-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7f5313ef4b2b15486068774b90fc2f65eaa0a07e8307202c80f1aad299c239b
|
| 3 |
+
size 3526299168
|
aixcoder-7b-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82a5eb6b6ec2285cab967a38f9d3a8aa0edb8c19f466a51111b8b0fd32806efa
|
| 3 |
+
size 4844621344
|
aixcoder-7b-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf8e25d0a5e9074bfd9625aab63db43a69c4d34d07b9290138328cd43dfb2d0e
|
| 3 |
+
size 4488760864
|
aixcoder-7b-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00d0447542839c7baf59992d8896b5079f310e2c38b99d2bf9873a4f87bcfb3f
|
| 3 |
+
size 5562371616
|
aixcoder-7b-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aca7825527ac0d6236dc533fc9cde90ef021b3ade30ec9d867b1334c0ff48268
|
| 3 |
+
size 5257236000
|
aixcoder-7b-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5194be29be6b68b641cddd42cc36e44bfc97f135f4f73b3eaf871a0f13c3d1ad
|
| 3 |
+
size 6558256672
|
aixcoder-7b-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05194c0c07a14d29b6994bcc395d0d8407cf5ac8250f28b3d25dc80705d26868
|
| 3 |
+
size 7899123232
|
aixcoder-7b.imatrix
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bccba87ec911311d4f234fb150b5d16a14eb67fa3dc4dd9f6f1ab12ee7e3c107
|
| 3 |
+
size 5004510
|