Skip to main content

Python bindings for @ggerganov's llama.cpp

Project description

Building the Python bindings

macOS

brew install pybind11

Install python package

From PyPI

pip install llamacpp

From source

poetry install

Get the model weights

You will need to obtain the weights for LLaMA yourself. There are a few torrents floating around as well as some huggingface repositories (e.g https://huggingface.co/nyanko7/LLaMA-7B/). Once you have them, copy them into the models folder.

ls ./models
65B 30B 13B 7B tokenizer_checklist.chk tokenizer.model

Convert the weights to GGML format using convert-pth-to-ggml.py and use the llamacpp-quantize command to quantize them into INT4. For example, for the 7B parameter model, run

python3 convert-pth-to-ggml.py models/7B/ 1
llamacpp-quantize ./models/7B/

Run demo script

import llamacpp
import os

model_path = "./models/7B/ggml-model-q4_0.bin"
params = llamacpp.gpt_params(model_path,
"Hi, I'm a llama.",
4096,
40,
0.1,
0.7,
2.0)
model = llamacpp.PyLLAMA(model_path, params)
model.predict("Hello, I'm a llama.", 10)

ToDo

  • Use poetry to build package
  • Add command line entry point for quantize script
  • Publish wheel to PyPI
  • Add chat interface based on tinygrad

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llamacpp-0.1.2.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

llamacpp-0.1.2-cp310-cp310-macosx_13_0_arm64.whl (190.0 kB view hashes)

Uploaded CPython 3.10 macOS 13.0+ ARM64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page