johnrachwanpruna commited on
Commit
64d1df1
1 Parent(s): 03df033

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +131 -0
README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ thumbnail: "https://assets-global.website-files.com/646b351987a8d8ce158d1940/64ec9e96b4334c0e1ac41504_Logo%20with%20white%20text.svg"
3
+ base_model: ibm-granite/granite-8b-code-instruct-128k
4
+ metrics:
5
+ - memory_disk
6
+ - memory_inference
7
+ - inference_latency
8
+ - inference_throughput
9
+ - inference_CO2_emissions
10
+ - inference_energy_consumption
11
+ tags:
12
+ - pruna-ai
13
+ ---
14
+ <!-- header start -->
15
+ <!-- 200823 -->
16
+ <div style="width: auto; margin-left: auto; margin-right: auto">
17
+ <a href="https://www.pruna.ai/" target="_blank" rel="noopener noreferrer">
18
+ <img src="https://i.imgur.com/eDAlcgk.png" alt="PrunaAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
19
+ </a>
20
+ </div>
21
+ <!-- header end -->
22
+
23
+ [![Twitter](https://img.shields.io/twitter/follow/PrunaAI?style=social)](https://twitter.com/PrunaAI)
24
+ [![GitHub](https://img.shields.io/github/followers/PrunaAI?label=Follow%20%40PrunaAI&style=social)](https://github.com/PrunaAI)
25
+ [![LinkedIn](https://img.shields.io/badge/LinkedIn-Connect-blue)](https://www.linkedin.com/company/93832878/admin/feed/posts/?feedType=following)
26
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Us-blue?style=social&logo=discord)](https://discord.gg/Tun8YgzxZ9)
27
+
28
+ # Simply make AI models cheaper, smaller, faster, and greener!
29
+
30
+ - Give a thumbs up if you like this model!
31
+ - Contact us and tell us which model to compress next [here](https://www.pruna.ai/contact).
32
+ - Request access to easily compress your *own* AI models [here](https://z0halsaff74.typeform.com/pruna-access?typeform-source=www.pruna.ai).
33
+ - Read the documentations to know more [here](https://pruna-ai-pruna.readthedocs-hosted.com/en/latest/)
34
+ - Join Pruna AI community on Discord [here](https://discord.gg/CP4VSgck) to share feedback/suggestions or get help.
35
+
36
+ **Frequently Asked Questions**
37
+ - ***How does the compression work?*** The model is compressed with Quanto to 8 bits.
38
+ - ***How does the model quality change?*** The quality of the model output might vary compared to the base model.
39
+ - ***How is the model efficiency evaluated?*** These results were obtained on HARDWARE_NAME 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.
40
+ - ***What is the model format?*** We use safetensors.
41
+ - ***What calibration data has been used?*** If needed by the compression method, we used WikiText as the calibration data.
42
+ - ***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.
43
+ - ***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).
44
+ - ***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 cuda overheads.
45
+ - ***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.
46
+
47
+ ## Setup
48
+
49
+ You can run the smashed model with these steps:
50
+
51
+ 0. Check requirements from the original repo black-forest-labs/FLUX.1-schnell installed. In particular, check python, diffusers, and transformers versions.
52
+ 1. Make sure that you have installed quantization related packages.
53
+ ```bash
54
+ pip install -U optimum-quanto
55
+ ```
56
+ 2. Download the model
57
+ - Option 1 - Use command line interface (CLI):
58
+ ```bash
59
+ mkdir SG161222-Realistic_Vision_V1.4-turbo-tiny-green-smashed
60
+ huggingface-cli download PrunaAI/SG161222-Realistic_Vision_V1.4-turbo-tiny-green-smashed --local-dir SG161222-Realistic_Vision_V1.4-turbo-tiny-green-smashed --local-dir-use-symlinks False
61
+ ```
62
+ - Option 2 - Use Python:
63
+ ```python
64
+ import subprocess
65
+ repo_name = "FLUX.1-schnell-4bit"
66
+ subprocess.run(["mkdir", repo_name])
67
+ subprocess.run(["huggingface-cli", "download", 'PrunaAI/'+ repo_name, "--local-dir", repo_name, "--local-dir-use-symlinks", "False"])
68
+ ```
69
+
70
+ 2. Load & run the model.
71
+ ```python
72
+
73
+ import torch
74
+
75
+ from optimum.quanto import freeze, qfloat8, quantize
76
+
77
+ from diffusers import FlowMatchEulerDiscreteScheduler, AutoencoderKL
78
+ from diffusers.models.transformers.transformer_flux import FluxTransformer2DModel
79
+ from diffusers.pipelines.flux.pipeline_flux import FluxPipeline
80
+ from transformers import CLIPTextModel, CLIPTokenizer,T5EncoderModel, T5TokenizerFast
81
+
82
+ dtype = torch.bfloat16
83
+
84
+ bfl_repo = "black-forest-labs/FLUX.1-schnell"
85
+ revision = "refs/pr/1"
86
+ local_path = "FLUX.1-schnell-4bit"
87
+
88
+ scheduler = FlowMatchEulerDiscreteScheduler.from_pretrained(bfl_repo, subfolder="scheduler", revision=revision)
89
+ text_encoder = CLIPTextModel.from_pretrained("openai/clip-vit-large-patch14", torch_dtype=dtype)
90
+ tokenizer = CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14", torch_dtype=dtype)
91
+ text_encoder_2 = torch.load(local_path + '/text_encoder_2.pt')
92
+ tokenizer_2 = T5TokenizerFast.from_pretrained(bfl_repo, subfolder="tokenizer_2", torch_dtype=dtype, revision=revision)
93
+ vae = AutoencoderKL.from_pretrained(bfl_repo, subfolder="vae", torch_dtype=dtype, revision=revision)
94
+ transformer = torch.load(local_path + '/transformer.pt')
95
+
96
+ pipe = FluxPipeline(
97
+ scheduler=scheduler,
98
+ text_encoder=text_encoder,
99
+ tokenizer=tokenizer,
100
+ text_encoder_2=None,
101
+ tokenizer_2=tokenizer_2,
102
+ vae=vae,
103
+ transformer=None,
104
+ )
105
+ pipe.text_encoder_2 = text_encoder_2
106
+ pipe.transformer = transformer
107
+ pipe.enable_model_cpu_offload()
108
+
109
+ generator = torch.Generator().manual_seed(12345)
110
+ image = pipe(
111
+ "a cute apple smiling",
112
+ guidance_scale=0.0,
113
+ num_inference_steps=4,
114
+ max_sequence_length=256,
115
+ generator=torch.Generator("cpu").manual_seed(0)
116
+ ).images[0]
117
+ image.save("flux-schnell.png")
118
+ ```
119
+
120
+ ## Configurations
121
+
122
+ The configuration info are in `smash_config.json`.
123
+
124
+ ## Credits & License
125
+
126
+ The license of the smashed model follows the license of the original model. Please check the license of the original model black-forest-labs/FLUX.1-schnell 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.
127
+
128
+ ## Want to compress other models?
129
+
130
+ - Contact us and tell us which model to compress next [here](https://www.pruna.ai/contact).
131
+ - Request access to easily compress your own AI models [here](https://z0halsaff74.typeform.com/pruna-access?typeform-source=www.pruna.ai).