sharpenb commited on
Commit
2138276
1 Parent(s): 6afa081

Upload folder using huggingface_hub (#2)

Browse files

- da8435e7b09868a8cc361db071e7cc8f8b8afbd2684e8df3f051da8d05517b5d (f0b6cfc8be4fe3d5e124a77c3e2d8419cfe4748f)

Files changed (5) hide show
  1. README.md +6 -3
  2. config.json +2 -2
  3. model.safetensors +2 -2
  4. plots.png +0 -0
  5. smash_config.json +1 -1
README.md CHANGED
@@ -1,5 +1,4 @@
1
  ---
2
- library_name: pruna-engine
3
  thumbnail: "https://assets-global.website-files.com/646b351987a8d8ce158d1940/64ec9e96b4334c0e1ac41504_Logo%20with%20white%20text.svg"
4
  metrics:
5
  - memory_disk
@@ -8,6 +7,8 @@ metrics:
8
  - inference_throughput
9
  - inference_CO2_emissions
10
  - inference_energy_consumption
 
 
11
  ---
12
  <!-- header start -->
13
  <!-- 200823 -->
@@ -33,13 +34,14 @@ metrics:
33
 
34
  ## Results
35
 
36
- Detailed efficiency metrics coming soon!
37
 
38
  **Frequently Asked Questions**
39
  - ***How does the compression work?*** The model is compressed with llm-int8.
40
  - ***How does the model quality change?*** The quality of the model output might vary compared to the base model.
41
  - ***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.
42
  - ***What is the model format?*** We use safetensors.
 
43
  - ***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.
44
  - ***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).
45
  - ***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.
@@ -59,12 +61,13 @@ You can run the smashed model with these steps:
59
  from transformers import AutoModelForCausalLM, AutoTokenizer
60
 
61
  model = AutoModelForCausalLM.from_pretrained("PrunaAI/sshleifer-tiny-gpt2-bnb-4bit-smashed",
62
- trust_remote_code=True)
63
  tokenizer = AutoTokenizer.from_pretrained("sshleifer/tiny-gpt2")
64
 
65
  input_ids = tokenizer("What is the color of prunes?,", return_tensors='pt').to(model.device)["input_ids"]
66
 
67
  outputs = model.generate(input_ids, max_new_tokens=216)
 
68
  ```
69
 
70
  ## Configurations
 
1
  ---
 
2
  thumbnail: "https://assets-global.website-files.com/646b351987a8d8ce158d1940/64ec9e96b4334c0e1ac41504_Logo%20with%20white%20text.svg"
3
  metrics:
4
  - memory_disk
 
7
  - inference_throughput
8
  - inference_CO2_emissions
9
  - inference_energy_consumption
10
+ tags:
11
+ - pruna-ai
12
  ---
13
  <!-- header start -->
14
  <!-- 200823 -->
 
34
 
35
  ## Results
36
 
37
+ ![image info](./plots.png)
38
 
39
  **Frequently Asked Questions**
40
  - ***How does the compression work?*** The model is compressed with llm-int8.
41
  - ***How does the model quality change?*** The quality of the model output might vary compared to the base model.
42
  - ***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.
43
  - ***What is the model format?*** We use safetensors.
44
+ - ***What calibration data has been used?*** If needed by the compression method, we used WikiText as the calibration data.
45
  - ***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.
46
  - ***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).
47
  - ***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.
 
61
  from transformers import AutoModelForCausalLM, AutoTokenizer
62
 
63
  model = AutoModelForCausalLM.from_pretrained("PrunaAI/sshleifer-tiny-gpt2-bnb-4bit-smashed",
64
+ trust_remote_code=True, device_map='auto')
65
  tokenizer = AutoTokenizer.from_pretrained("sshleifer/tiny-gpt2")
66
 
67
  input_ids = tokenizer("What is the color of prunes?,", return_tensors='pt').to(model.device)["input_ids"]
68
 
69
  outputs = model.generate(input_ids, max_new_tokens=216)
70
+ tokenizer.decode(outputs[0])
71
  ```
72
 
73
  ## Configurations
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "/tmp/tmpn4la7znq",
3
  "activation_function": "gelu_new",
4
  "architectures": [
5
  "GPT2LMHeadModel"
@@ -20,7 +20,7 @@
20
  "quantization_config": {
21
  "bnb_4bit_compute_dtype": "bfloat16",
22
  "bnb_4bit_quant_type": "fp4",
23
- "bnb_4bit_use_double_quant": true,
24
  "llm_int8_enable_fp32_cpu_offload": false,
25
  "llm_int8_has_fp16_weight": false,
26
  "llm_int8_skip_modules": [
 
1
  {
2
+ "_name_or_path": "/tmp/tmpbew68a5c",
3
  "activation_function": "gelu_new",
4
  "architectures": [
5
  "GPT2LMHeadModel"
 
20
  "quantization_config": {
21
  "bnb_4bit_compute_dtype": "bfloat16",
22
  "bnb_4bit_quant_type": "fp4",
23
+ "bnb_4bit_use_double_quant": false,
24
  "llm_int8_enable_fp32_cpu_offload": false,
25
  "llm_int8_has_fp16_weight": false,
26
  "llm_int8_skip_modules": [
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6b0802ca577f86c53c3f9f33338c0494fc3cd79e12f0cb4b532d06ed669b3a1e
3
- size 222198
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3fd8f68bca3bbec11236946063645401f67c325dffce35b38be87d110bdf0a6
3
+ size 211476
plots.png ADDED
smash_config.json CHANGED
@@ -8,7 +8,7 @@
8
  "compilers": "None",
9
  "task": "text_text_generation",
10
  "device": "cuda",
11
- "cache_dir": "/ceph/hdd/staff/charpent/.cache/modelsy5wflq4q",
12
  "batch_size": 1,
13
  "model_name": "sshleifer/tiny-gpt2",
14
  "pruning_ratio": 0.0,
 
8
  "compilers": "None",
9
  "task": "text_text_generation",
10
  "device": "cuda",
11
+ "cache_dir": "/ceph/hdd/staff/charpent/.cache/modelsvj2cnde2",
12
  "batch_size": 1,
13
  "model_name": "sshleifer/tiny-gpt2",
14
  "pruning_ratio": 0.0,