Xuehao commited on
Commit
7a9907b
·
verified ·
1 Parent(s): 55c3d07

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - zai-org/GLM-ASR-Nano-2512
4
+ ---
5
+
6
+ ## Model Details
7
+
8
+ This model is an int4 model with group_size 128 and symmetric quantization of [zai-org/GLM-ASR-Nano-2512](https://huggingface.co/zai-org/GLM-ASR-Nano-2512) generated by [intel/auto-round](https://github.com/intel/auto-round). Please follow the license of the original model.
9
+
10
+ ## How to Use
11
+
12
+ ### HF Usage
13
+
14
+ ```python
15
+ # transformers==5.0.0.dev0
16
+ from transformers import AutoModelForSeq2SeqLM, AutoProcessor
17
+
18
+ model_id = "Intel/GLM-ASR-Nano-2512-int4-AutoRound"
19
+ processor = AutoProcessor.from_pretrained(model_id)
20
+ model = AutoModelForSeq2SeqLM.from_pretrained(model_id, dtype="auto", device_map="auto")
21
+
22
+ inputs = processor.apply_transcription_request(
23
+ "https://huggingface.co/datasets/hf-internal-testing/dummy-audio-samples/resolve/main/bcn_weather.mp3"
24
+ )
25
+
26
+ inputs = inputs.to(model.device, dtype=model.dtype)
27
+ outputs = model.generate(**inputs, do_sample=False, max_new_tokens=500)
28
+
29
+ decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1] :], skip_special_tokens=True)
30
+ print(decoded_outputs)
31
+ ```
32
+
33
+ ## Generate the Model
34
+
35
+ ```bash
36
+ pip install git+https://github.com/huggingface/transformers
37
+ auto-round --bits 4 --iters 0 --disable_opt_rtn --model_name zai-org/GLM-ASR-Nano-2512
38
+ ```
39
+
40
+ ## Ethical Considerations and Limitations
41
+
42
+ The model can produce factually incorrect output, and should not be relied on to produce factually accurate information. Because of the limitations of the pretrained model and the finetuning datasets, it is possible that this model could generate lewd, biased or otherwise offensive outputs.
43
+
44
+ Therefore, before deploying any applications of the model, developers should perform safety testing.
45
+
46
+ ## Caveats and Recommendations
47
+
48
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
49
+
50
+ Here are a couple of useful links to learn more about Intel's AI software:
51
+
52
+ - [Intel Neural Compressor](https://github.com/intel/neural-compressor)
53
+
54
+ ## Disclaimer
55
+
56
+ The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model. Please consult an attorney before using this model for commercial purposes.
57
+
58
+ ## Cite
59
+
60
+ @article{cheng2023optimize, title={Optimize weight rounding via signed gradient descent for the quantization of llms}, author={Cheng, Wenhua and Zhang, Weiwei and Shen, Haihao and Cai, Yiyang and He, Xin and Lv, Kaokao and Liu, Yi}, journal={arXiv preprint arXiv:2309.05516}, year={2023} }
61
+
62
+ [arxiv](https://arxiv.org/abs/2309.05516) [github](https://github.com/intel/auto-round)