Model Details
This model is an int4 model with group_size 128 and symmetric quantization of zai-org/GLM-ASR-Nano-2512 generated by intel/auto-round. Please follow the license of the original model.
The model is quantized without algorithm tuning, and we have limited experience with audio model quantization. Please use it with caution.
How to Use
HF Usage
# transformers==5.0.0.dev0
from transformers import AutoModelForSeq2SeqLM, AutoProcessor
model_id = "Intel/GLM-ASR-Nano-2512-int4-AutoRound"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForSeq2SeqLM.from_pretrained(model_id, dtype="auto", device_map="auto")
inputs = processor.apply_transcription_request(
"https://huggingface.co/datasets/hf-internal-testing/dummy-audio-samples/resolve/main/bcn_weather.mp3"
)
inputs = inputs.to(model.device, dtype=model.dtype)
outputs = model.generate(**inputs, do_sample=False, max_new_tokens=500)
decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1] :], skip_special_tokens=True)
print(decoded_outputs)
Generate the Model
pip install git+https://github.com/huggingface/transformers
auto-round --bits 4 --iters 0 --disable_opt_rtn --model_name zai-org/GLM-ASR-Nano-2512
Ethical Considerations and Limitations
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.
Therefore, before deploying any applications of the model, developers should perform safety testing.
Caveats and Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
Here are a couple of useful links to learn more about Intel's AI software:
Disclaimer
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.
Cite
@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} }
- Downloads last month
- 65
Model tree for Intel/GLM-ASR-Nano-2512-int4-AutoRound
Base model
zai-org/GLM-ASR-Nano-2512