OPEA
/

GGUF
conversational
cicdatopea commited on
Commit
088441e
·
verified ·
1 Parent(s): 2a61d4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -60,3 +60,45 @@ The image is a close-up shot of a vibrant garden scene, focusing on pink cosmos
60
 
61
  **Overall, the image is a charming depiction of a summer garden, highlighting the beauty of nature and the important role of pollinators like bumblebees.**
62
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  **Overall, the image is a charming depiction of a summer garden, highlighting the beauty of nature and the important role of pollinators like bumblebees.**
62
  ```
63
+
64
+ ## Generate the model
65
+
66
+ Here is the sample command to reproduce the model.
67
+
68
+ ```bash
69
+ pip install git+https://github.com/intel/auto-round.git@main
70
+ auto-round-mllm \
71
+ --model google/gemma-3-27b-it \
72
+ --device 0 \
73
+ --bits 4 \
74
+ --group_size 32 \
75
+ --batch_size 1 \
76
+ --gradient_accumulate_steps 8 \
77
+ --format 'gguf:q4_0' \
78
+ --output_dir "./tmp_autoround"
79
+ ```
80
+
81
+
82
+ ## Ethical Considerations and Limitations
83
+
84
+ 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.
85
+
86
+ Therefore, before deploying any applications of the model, developers should perform safety testing.
87
+
88
+ ## Caveats and Recommendations
89
+
90
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
91
+
92
+ Here are a couple of useful links to learn more about Intel's AI software:
93
+
94
+ - Intel Neural Compressor [link](https://github.com/intel/neural-compressor)
95
+
96
+ ## Disclaimer
97
+
98
+ 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.
99
+
100
+ ## Cite
101
+
102
+ @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} }
103
+
104
+ [arxiv](https://arxiv.org/abs/2309.05516) [github](https://github.com/intel/auto-round)