đ PrunaAI: Making AI Models Cheaper, Smaller, Faster, and Greener!
PrunaAI aims to revolutionize the AI field by making models more cost - effective, compact, high - speed, and environmentally friendly. With various compression techniques, it offers significant improvements in model efficiency.
Social Media Links

Quick Actions
- đ Give a thumbs up if you like this model!
- đ¨ Contact us and tell us which model to compress next here.
- đ Request access to easily compress your own AI models here.
- đ Read the documentations to know more here
- đŦ Join Pruna AI community on Discord here to share feedback/suggestions or get help.
⨠Features
- Metrics Tracking: Keeps track of multiple metrics including
memory_disk
, memory_inference
, inference_latency
, inference_throughput
, inference_CO2_emissions
, and inference_energy_consumption
.
- Model Compression: Compresses AI models using techniques like
llm - int8
to make them more efficient.
- Multiple Metrics Types: Provides both "first", "Sync", and "Async" metrics to evaluate model performance in different scenarios.
đĻ Installation
You can run the smashed model with these steps:
- Check requirements from the original repo
mosaicml/mpt - 7b - storywriter
installed. In particular, check Python, CUDA, and transformers
versions.
- Make sure that you have installed quantization related packages.
pip install transformers accelerate bitsandbytes>0.37.0
đģ Usage Examples
Basic Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("PrunaAI/mosaicml-mpt-7b-storywriter-bnb-4bit-smashed",
trust_remote_code=True, device_map='auto')
tokenizer = AutoTokenizer.from_pretrained("mosaicml/mpt-7b-storywriter")
input_ids = tokenizer("What is the color of prunes?,", return_tensors='pt').to(model.device)["input_ids"]
outputs = model.generate(input_ids, max_new_tokens=216)
tokenizer.decode(outputs[0])
đ Documentation
Results

Frequently Asked Questions
- How does the compression work? The model is compressed with
llm - int8
.
- How does the model quality change? The quality of the model output might vary compared to the base model.
- How is the model efficiency evaluated? These results were obtained on NVIDIA A100 - PCIE - 40GB with configuration described in
model/smash_config.json
and are obtained after a hardware warmup. The smashed model is directly compared to the original base model. Efficiency results may vary in other settings (e.g. other hardware, image size, batch size, ...). We recommend to directly run them in the use - case conditions to know if the smashed model can benefit you.
- What is the model format? We use
safetensors
.
- What calibration data has been used? If needed by the compression method, we used
WikiText
as the calibration data.
- What is the naming convention for Pruna Huggingface models? We take the original model name and append "turbo", "tiny", or "green" if the smashed model has a measured inference speed, inference memory, or inference energy consumption which is less than 90% of the original base model.
- How to compress my own models? You can request premium access to more compression methods and tech support for your specific use - cases [here](https://z0halsaff74.typeform.com/pruna - access?typeform - source=www.pruna.ai).
- What are "first" metrics? Results mentioning "first" are obtained after the first run of the model. The first run might take more memory or be slower than the subsequent runs due to CUDA overheads.
- What are "Sync" and "Async" metrics? "Sync" metrics are obtained by syncing all GPU processes and stop measurement when all of them are executed. "Async" metrics are obtained without syncing all GPU processes and stop when the model output can be used by the CPU. We provide both metrics since both could be relevant depending on the use - case. We recommend to test the efficiency gains directly in your use - cases.
Configurations
The configuration info are in smash_config.json
.
đ License
The license of the smashed model follows the license of the original model. Please check the license of the original model mosaicml/mpt - 7b - storywriter
before using this model which provided the base model. The license of the pruna - engine
is [here](https://pypi.org/project/pruna - engine/) on PyPI.
Want to compress other models?
- đ¨ Contact us and tell us which model to compress next here.
- đ Request access to easily compress your own AI models [here](https://z0halsaff74.typeform.com/pruna - access?typeform - source=www.pruna.ai).