Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
P

pyllama

> 编程语言
Open source

LLaMA: Open and Efficient Foundation Language Models

2.8K stars0 likes0 views
WebsiteGitHub

About

LLaMA: Open and Efficient Foundation Language Models

LLaMA - Run LLM in A Single 4GB GPU

pyllama is a hacked version of LLaMA based on original Facebook's implementation but more convenient to run in a Single consumer grade GPU.

The Hugging Face's LLaMA implementation is available at pyllama.hf.

Installation

In a conda env with pytorch / cuda available, run:

pip install pyllama -U

If you have installed llama library from other sources, please uninstall the previous llama library and use pip install pyllama -U to install the latest version.

Download Model Files

‍♀️ Official Way

In order to download the checkpoints and tokenizer, fill this google form

Once your request is approved, you will receive links to download the tokenizer and model files. Edit the download.sh script with the signed url provided in the email to download the model weights and tokenizer.

Community Way

    1. pyllama

There is another high-speed way to download the checkpoints and tokenizers. There are four models(7B,13B,30B,65B) available. To download all of them, run:

python -m llama.download

To download only the 7B model files to your current directory, run:

python -m llama.download --model_size 7B

To download only the 7B and 30B model files to folder /tmp/pyllama_data, run:

python -m llama.download --model_size 7B,30B --folder /tmp/pyllama_data

The help doc is:

…
  • Sample Screenshot

    1. Bittorrent

In order to download the checkpoints and tokenizer, use this BitTorrent link: "magnet:?xt=urn:btih:ZXXDAUWYLRUXXBHUYEMS6Q5CE5WA3LVA&dn=LLaMA".

Quantize LLaMA to run in a 4GB GPU

pyllama support quantization of 2/3/4/8-bit so that you can run model in a 4G memory GPU.

You need to run export HUGGING_FACE_HUB_TOKEN=XXX to be able to access Hugging Face's data. You also need to install gptq with command pip install gptq.

…
  • Quantize 7B model to 8-bit
python -m llama.llama_quant decapoda-research/llama-7b-hf c4 --wbits 8 --save pyllama-7B8b.pt
  • Quantize 7B model to 4-bit with groupsize 128 (the recommended setup )
python -m llama.llama_quant decapoda-research/llama-7b-hf c4 --wbits 4 --groupsize 128 --save pyllama-7B4b.pt
  • Quantize 7B model to 2-bit
python -m llama.llama_quant decapoda-research/llama-7b-hf c4 --wbits 2 --save pyllama-7B2b.pt

The download links for quantized LLaMA files are below:

  • 7B
Quant Type Size Link MD5 Loss Password
2-bit 2160484475 4c7215d28c1f650218c43fc46402cec5 - 8g9d
3-bit - - - - -
4-bit 3779485819 - cce9a3b522ddf5c011ee0174b2ff3dfb - -
8-bit 7017493231 - 2648b09597cf8f9e0d1a04cb70b71cab - -

It took me 2 hours 40 mins to quantize the 65B model to 4bit. The file size is reduced from 122GB to 32GB.

The following suggestions are recommended for LLM quantization:

  1. By default, use 4-bit quantization for LLM inference as it offers the total model bits and zero-shot accuracy trade-offs.
  2. Use a block size of 128 or lower to stabilize 4-bit quantization and improve zero-shot performance.
  3. Use a floating point or quantile quantization data type. In some cases, integer data types might be preferable to improve inference latency depending on the implementation and hardware support.

Single GPU Inference

Without Quantization

Set the environment variables CKPT_DIR as your llama model folder, for example /llama_data/7B, and TOKENIZER_PATH as your tokenizer's path, such as /llama_data/tokenizer.model.

And then run the following command:

python inference.py --ckpt_dir $CKPT_DIR --tokenizer_path $TOKENIZER_PATH

The following is an example of LLaMA running in a 8GB single GPU.

With Quantization

With quantization, you can run LLaMA with a 4GB memory GPU.

  • pyllama can run 7B model with 6GB GPU memory. Example: python quant_infer.py --wbits 4 --load pyllama-7B4b.pt -- text "..." --max_length 24 --cuda cuda:0

  • pyllama can run 7B model with 3.2GB GPU memory. Example: python quant_infer.py --wbits 2 --load pyllama-7B4b.pt -- text "..." --max_length 32

Tips

  • To load KV cache in CPU, run export KV_CAHCHE_IN_GPU=0 in the shell.

  • To profile CPU/GPU/Latency, run:

python inference_driver.py --ckpt_dir $CKPT_DIR --tokenizer_path $TOKENIZER_PATH

A sample result is like:

  • Tune max_seq_len and max_batch_size to reduce memory consumption to be able to run in GPU. Refer to: this post!

Start a gradio webui

$ cd apps/gradio
$ python webapp_single.py  --ckpt_dir $CKPT_DIR --tokenizer_path $TOKENIZER_PATH

You should see something like this in your browser:

Start a web server

The following command will start a flask web server:

$ cd apps/flask
$ python web_server_single.py  --ckpt_dir $CKPT_DIR --tokenizer_path $TOKENIZER_PATH

Multiple GPU Inference

‍♀️ Official Way

To use the original META's model parallel, please set environment variable PYLLAMA_META_MP like:

export PYLLAMA_META_MP=1

With this environment variable set, you can import llama and the original META version's llama will be imported.

The provided example.py can be run on a single or multi-gpu node with torchrun and will output completions for two pre-defined prompts. Using TARGET_FOLDER as defined in download.sh:

torchrun --nproc_per_node MP example.py --ckpt_dir $TARGET_FOLDER/model_size \
  --tokenizer_path $TARGET_FOLDER/tokenizer.model

Different models require different MP values:

Model MP
7B 1
13B 2
30B 4
65B 8

Community Way

There are two steps to run LLaMA in multi-GPU environment.

  • Convert original LLaMA model
$python -m llama.convert_llama --help
usage: convert_llama.py [-h] [--ckpt_dir CKPT_DIR] [--tokenizer_path TOKENIZER_PATH]
                        [--model_size {7B,13B,30B,65B}] [--output_dir OUTPUT_DIR]
                        [--max_batch_size MAX_BATCH_SIZE] [--to {hf,fb}]

optional arguments:
  -h, --help            show this help message and exit
  --ckpt_dir CKPT_DIR
  --tokenizer_path TOKENIZER_PATH
  --model_size {7B,13B,30B,65B}
  --output_dir OUTPUT_DIR
                        Location to write HF model and tokenizer
  --max_batch_size MAX_BATCH_SIZE
  --to {hf,fb}
  • Run with HF's accelerate with multiple GPUs
$python -m llama.llama_multigpu --help
usage: llama_multigpu.py [-h] [--state_dict_dir STATE_DICT_DIR] [--model_size {7B,13B,30B,65B}]

optional arguments:
  -h, --help            show this help message and exit
  --state_dict_dir STATE_DICT_DIR
  --model_size {7B,13B,30B,65B}

Model Fine Tuning

With Stanford Alpaca Instruction-Following Dataset

  • Tokenization
  • Finetuning
  • Efficient FT

LLaMA model structure

  • Meta
  • Hugging Face
https://github.com/facebookresearch/llama/blob/main/llama/model.py#LL127C27-L127C27

Model Card

See MODEL_CARD.md

License

See the LICENSE file.

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

> Tags

Python

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言