lianglv commited on
Commit
81a07e0
·
verified ·
1 Parent(s): 381b822

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md CHANGED
@@ -1,3 +1,52 @@
1
  ---
 
 
 
 
2
  license: openmdw-1.1
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model:
3
+ - nvidia/Cosmos3-Super
4
+ tags:
5
+ - Any-to-Any
6
  license: openmdw-1.1
7
  ---
8
+ ## Model Details
9
+
10
+ This model is a mixed int4 model with group_size 128 and symmetric quantization of [nvidia/Cosmos3-Super](https://huggingface.co/nvidia/Cosmos3-Super) generated by [intel/auto-round](https://github.com/intel/auto-round). Please follow the license of the original model.
11
+
12
+ ## vllm-omni inference
13
+
14
+ ~~~bash
15
+ vllm serve Intel/Cosmos3-Super-int4-AutoRound --omni --port 8091
16
+ ~~~
17
+
18
+ ## Test
19
+
20
+ Follow the https://huggingface.co/nvidia/Cosmos3-Super/blob/main/README.md to verify Image to video generation, Text to video generation, Image to Video + Audio generation, Text to Video + Audio generation and Action generation.
21
+
22
+ ## Generate the Model
23
+
24
+ ~~~bash
25
+ auto_round --model nvidia/Cosmos3-Super --format auto_round --scheme W4A16 --dataset coco2014 --output_dir ./tmp_cosmos3_super_w4a16/ --nsamples 16 --num_inference_steps 5 --batch_size 1
26
+ ~~~
27
+
28
+
29
+
30
+ ## Ethical Considerations and Limitations
31
+
32
+ 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.
33
+
34
+ Therefore, before deploying any applications of the model, developers should perform safety testing.
35
+
36
+ ## Caveats and Recommendations
37
+
38
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
39
+
40
+ Here are a couple of useful links to learn more about Intel's AI software:
41
+
42
+ - [Intel Neural Compressor](https://github.com/intel/neural-compressor)
43
+
44
+ ## Disclaimer
45
+
46
+ 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.
47
+
48
+ ## Cite
49
+
50
+ @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} }
51
+
52
+ [arxiv](https://arxiv.org/abs/2309.05516) [github](https://github.com/intel/auto-round)