Text-to-image Generation Models (Diffusion, LCM...)
Collection
57 items
•
Updated
•
7
Frequently Asked Questions
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.You can run the smashed model with these steps:
nvcc --version
and install with conda install nvidia/label/cuda-12.1.0::cuda
.pruna-engine
available here on Pypi. It might take up to 15 minutes to install.pip install pruna-engine[gpu]==0.6.0 --extra-index-url https://pypi.nvidia.com --extra-index-url https://pypi.ngc.nvidia.com --extra-index-url https://prunaai.pythonanywhere.com/
mkdir CompVis-stable-diffusion-v1-4-turbo-tiny-green-smashed
huggingface-cli download PrunaAI/CompVis-stable-diffusion-v1-4-turbo-tiny-green-smashed --local-dir CompVis-stable-diffusion-v1-4-turbo-tiny-green-smashed --local-dir-use-symlinks False
import subprocess
repo_name = "CompVis-stable-diffusion-v1-4-turbo-tiny-green-smashed"
subprocess.run(["mkdir", repo_name])
subprocess.run(["huggingface-cli", "download", 'PrunaAI/'+ repo_name, "--local-dir", repo_name, "--local-dir-use-symlinks", "False"])
from pruna_engine.PrunaModel import PrunaModel
model_path = "CompVis-stable-diffusion-v1-4-turbo-tiny-green-smashed/model" # Specify the downloaded model path.
smashed_model = PrunaModel.load_model(model_path) # Load the model.
smashed_model(prompt='Beautiful fruits in trees', height=512, width=512)[0][0] # Run the model where x is the expected input of.
The configuration info are in config.json
.
We follow the same license as the original model. Please check the license of the original model CompVis/stable-diffusion-v1-4 before using this model which provided the base model.