n1ck-guo commited on
Commit
39445cd
·
verified ·
1 Parent(s): e235681

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - Qwen/Qwen3.5-397B-A17B
4
+ ---
5
+
6
+ ## Model Details
7
+
8
+ This model is a mixed gguf q2ks format of [Qwen/Qwen3.5-397B-A17B](https://huggingface.co/Qwen/Qwen3.5-397B-A17B) generated by [intel/auto-round](https://github.com/intel/auto-round) algorithm. Embedding layer and lm-head layer are fallback to 8 bits and non expert layers are fallback to 4 bits. Please refer to Section `Generate the model` for more details.
9
+
10
+ Please follow the license of the original model.
11
+
12
+ ## How To Use
13
+
14
+ Llama.cpp inference.
15
+
16
+ ~~~bash
17
+ > wget https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg
18
+ > ./llama-cli -m Qwen3.5-397B-A17B-w2g16/Qwen3.5-397B-A17B-Q2_K_S-00001-of-00004.gguf -mm Qwen3.5-397B-A17B-w2g16/mmproj-model.gguf
19
+ ~~~
20
+
21
+ ~~~bash
22
+ > /image demo.jpeg
23
+
24
+ Loaded media from 'demo.jpeg'
25
+
26
+ > Describe this image.
27
+
28
+ [Start thinking]
29
+
30
+ This image shows a young woman and a large, light-colored dog sitting together on a sandy beach, likely at sunset or sunrise given the warm, golden lighting. The woman, positioned on the right, is smiling and looking down at the dog, who is sitting up on its hindquarters and gently touching her hand with its paw. Both appear relaxed and affectionate. The woman wears a plaid shirt and dark pants, while the dog has a harness on. The background features a calm ocean with gentle waves and a bright, hazy sky, creating a serene and peaceful atmosphere. The lighting casts a soft glow over the scene, highlighting the bond between the woman and her dog.
31
+
32
+ [End thinking]
33
+
34
+ This image shows a young woman and a large, light-colored dog sitting together on a sandy beach, likely at sunset or sunrise given the warm, golden lighting. The woman, positioned on the right, is smiling and looking down at the dog, who is sitting up on its hindquarters and gently touching her hand with its paw. Both appear relaxed and affectionate. The woman wears a plaid shirt and dark pants, while the dog has a harness on. The background features a calm ocean with gentle waves and a bright, hazy sky, creating a serene and peaceful atmosphere. The lighting casts a soft glow over the scene, highlighting the bond between the woman and her dog.
35
+
36
+ ~~~
37
+
38
+
39
+
40
+ ### Generate the model
41
+
42
+ Here is the sample command to reproduce the model
43
+
44
+ ```bash
45
+ auto_round --model Qwen/Qwen3.5-397B-A17B --iters 0 --output_dir tmp_autoround --scheme gguf:q2_k_mixed
46
+
47
+ ```
48
+
49
+
50
+
51
+ ## Ethical Considerations and Limitations
52
+
53
+ 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.
54
+
55
+ Therefore, before deploying any applications of the model, developers should perform safety testing.
56
+
57
+ ## Caveats and Recommendations
58
+
59
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
60
+
61
+ Here are a couple of useful links to learn more about Intel's AI software:
62
+
63
+ - Intel Neural Compressor [link](https://github.com/intel/neural-compressor)
64
+
65
+ ## Disclaimer
66
+
67
+ 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.
68
+
69
+ ## Cite
70
+
71
+ @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} }
72
+
73
+ [arxiv](https://arxiv.org/abs/2309.05516) [github](https://github.com/intel/auto-round)