CoolFace
Modelpublic

AmpereComputing/llama-3.1-8b-gguf

sourceHugging Facellama3.1updated 1y agoView on Hugging Face
0likes42downloads
Model Card

llama.cpp

Ampere® optimized llama.cpp

llama.cpp pull count

Ampere® optimized build of llama.cpp with full support for rich collection of GGUF models available at HuggingFace: GGUF models

For best results we recommend using models in our custom quantization formats available here: [AmpereComputing HF](https://huggingface.co/AmpereComputing)

This Docker image can be run on bare metal Ampere® CPUs and Ampere® based VMs available in the cloud.

Release notes and binary executables are available on our GitHub

Starting container

Default entrypoint runs the server binary of llama.cpp, mimicking behavior of original llama.cpp server image: docker image

To launch shell instead, do this:

bash
sudo docker run --privileged=true --name llama --entrypoint /bin/bash -it amperecomputingai/llama.cpp:latest

Quick start example will be presented at docker container launch:

quick start

Make sure to visit us at Ampere Solutions Portal!

Quantization

Ampere® optimized build of llama.cpp provides support for two new quantization methods, Q4K4 and Q8R16, offering model size and perplexity similar to Q4K and Q80, respectively, but performing up to 1.5-2x faster on inference.

First, you'll need to convert the model to the GGUF format using this script:

bash
python3 convert-hf-to-gguf.py [path to the original model] --outtype [f32, f16, bf16 or q8_0] --outfile [output path]

For example:

bash
python3 convert-hf-to-gguf.py path/to/llama2 --outtype f16 --outfile llama-2-7b-f16.gguf

Next, you can quantize the model using the following command:

bash
./llama-quantize [input file] [output file] [quantization method]

For example:

bash
./llama-quantize llama-2-7b-f16.gguf llama-2-7b-Q8R16.gguf Q8R16

Support

Please contact us at <ai-support@amperecomputing.com>

LEGAL NOTICE

By accessing, downloading or using this software and any required dependent software (the “Ampere AI Software”), you agree to the terms and conditions of the software license agreements for the Ampere AI Software, which may also include notices, disclaimers, or license terms for third party software included with the Ampere AI Software. Please refer to the Ampere AI Software EULA v1.6 or other similarly-named text file for additional details.