sharpenb commited on
Commit
3a93d7b
1 Parent(s): 0dd403e

261524deadcc217eb7b36529f135b07dfc02dfa31f3ce0427afe5fdfd61f6f11

Browse files
Files changed (2) hide show
  1. README.md +8 -8
  2. results.json +17 -0
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  thumbnail: "https://assets-global.website-files.com/646b351987a8d8ce158d1940/64ec9e96b4334c0e1ac41504_Logo%20with%20white%20text.svg"
3
- base_model: GreatCaptainNemo/ProLLaMA
4
  metrics:
5
  - memory_disk
6
  - memory_inference
@@ -38,7 +38,7 @@ tags:
38
  ![image info](./plots.png)
39
 
40
  **Frequently Asked Questions**
41
- - ***How does the compression work?*** The model is compressed with llm-int8.
42
  - ***How does the model quality change?*** The quality of the model output might vary compared to the base model.
43
  - ***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.
44
  - ***What is the model format?*** We use safetensors.
@@ -52,18 +52,18 @@ tags:
52
 
53
  You can run the smashed model with these steps:
54
 
55
- 0. Check requirements from the original repo GreatCaptainNemo/ProLLaMA installed. In particular, check python, cuda, and transformers versions.
56
  1. Make sure that you have installed quantization related packages.
57
  ```bash
58
- pip install transformers accelerate bitsandbytes>0.37.0
59
  ```
60
  2. Load & run the model.
61
  ```python
62
  from transformers import AutoModelForCausalLM, AutoTokenizer
63
-
64
 
65
- model = AutoModelForCausalLM.from_pretrained("PrunaAI/GreatCaptainNemo-ProLLaMA-bnb-4bit-smashed", trust_remote_code=True, device_map='auto')
66
- tokenizer = AutoTokenizer.from_pretrained("GreatCaptainNemo/ProLLaMA")
67
 
68
  input_ids = tokenizer("What is the color of prunes?,", return_tensors='pt').to(model.device)["input_ids"]
69
 
@@ -77,7 +77,7 @@ The configuration info are in `smash_config.json`.
77
 
78
  ## Credits & License
79
 
80
- The license of the smashed model follows the license of the original model. Please check the license of the original model GreatCaptainNemo/ProLLaMA 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.
81
 
82
  ## Want to compress other models?
83
 
 
1
  ---
2
  thumbnail: "https://assets-global.website-files.com/646b351987a8d8ce158d1940/64ec9e96b4334c0e1ac41504_Logo%20with%20white%20text.svg"
3
+ base_model: PrunaAI/GreatCaptainNemo-ProLLaMA-bnb-4bit-smashed
4
  metrics:
5
  - memory_disk
6
  - memory_inference
 
38
  ![image info](./plots.png)
39
 
40
  **Frequently Asked Questions**
41
+ - ***How does the compression work?*** The model is compressed with [.
42
  - ***How does the model quality change?*** The quality of the model output might vary compared to the base model.
43
  - ***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.
44
  - ***What is the model format?*** We use safetensors.
 
52
 
53
  You can run the smashed model with these steps:
54
 
55
+ 0. Check requirements from the original repo PrunaAI/GreatCaptainNemo-ProLLaMA-bnb-4bit-smashed installed. In particular, check python, cuda, and transformers versions.
56
  1. Make sure that you have installed quantization related packages.
57
  ```bash
58
+ REQUIREMENTS_INSTRUCTIONS
59
  ```
60
  2. Load & run the model.
61
  ```python
62
  from transformers import AutoModelForCausalLM, AutoTokenizer
63
+ IMPORTS
64
 
65
+ MODEL_LOAD
66
+ tokenizer = AutoTokenizer.from_pretrained("PrunaAI/GreatCaptainNemo-ProLLaMA-bnb-4bit-smashed")
67
 
68
  input_ids = tokenizer("What is the color of prunes?,", return_tensors='pt').to(model.device)["input_ids"]
69
 
 
77
 
78
  ## Credits & License
79
 
80
+ The license of the smashed model follows the license of the original model. Please check the license of the original model PrunaAI/GreatCaptainNemo-ProLLaMA-bnb-4bit-smashed 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.
81
 
82
  ## Want to compress other models?
83
 
results.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "current_gpu_type": "NVIDIA A100-PCIE-40GB",
3
+ "current_gpu_total_memory": 40339.3125,
4
+ "perplexity": 314.1881103515625,
5
+ "token_generation_latency_sync": 58.484791946411136,
6
+ "token_generation_latency_async": 58.827887289226055,
7
+ "token_generation_throughput_sync": 0.017098462125269887,
8
+ "token_generation_throughput_async": 0.016998740666710012,
9
+ "token_generation_CO2_emissions": null,
10
+ "token_generation_energy_consumption": null,
11
+ "inference_latency_sync": 181.00572357177734,
12
+ "inference_latency_async": 103.63984107971191,
13
+ "inference_throughput_sync": 0.005524687177107151,
14
+ "inference_throughput_async": 0.009648799048532657,
15
+ "inference_CO2_emissions": null,
16
+ "inference_energy_consumption": null
17
+ }