Zhihui commited on
Commit
2616ac8
1 Parent(s): 45d883d

Add model sources and citation

Browse files
Files changed (1) hide show
  1. README.md +9 -4
README.md CHANGED
@@ -14,8 +14,8 @@ Silkie is a visual language model trained using preference distillation on GPT-4
14
 
15
  - **Project page:** https://vlf-silkie.github.io/
16
  - **Dataset:** https://huggingface.co/datasets/MMInstruction/VLFeedback
17
- - **Paper:** Coming soon.
18
- - **Repository:** Coming soon.
19
 
20
  ## Uses
21
 
@@ -25,7 +25,7 @@ Silkie is intended for research purposes, particularly for alignment research in
25
 
26
  ## How to Get Started
27
 
28
- Below is a simple Python code snippet to get started with the model.
29
 
30
  ```python
31
  from transformers import AutoModelForCausalLM, AutoTokenizer
@@ -48,5 +48,10 @@ response, history = model.chat(tokenizer, query=query, history=None)
48
  ## Citation
49
 
50
  ```
51
- Coming soon.
 
 
 
 
 
52
  ```
 
14
 
15
  - **Project page:** https://vlf-silkie.github.io/
16
  - **Dataset:** https://huggingface.co/datasets/MMInstruction/VLFeedback
17
+ - **Paper:** https://arxiv.org/abs/2312.10665
18
+ - **Repository:** https://github.com/vlf-silkie/VLFeedback
19
 
20
  ## Uses
21
 
 
25
 
26
  ## How to Get Started
27
 
28
+ Below is a simple Python code snippet to get started with the model. For installation instructions please refer to our [Github repository](https://github.com/vlf-silkie/VLFeedback?tab=readme-ov-file#installation).
29
 
30
  ```python
31
  from transformers import AutoModelForCausalLM, AutoTokenizer
 
48
  ## Citation
49
 
50
  ```
51
+ @article{2023vlfeedback,
52
+ author = {Lei Li and Zhihui Xie and Mukai Li and Shunian Chen and Peiyi Wang and Liang Chen and Yazheng Yang and Benyou Wang and Lingpeng Kong},
53
+ title = {Silkie: Preference Distillation for Large Visual Language Models},
54
+ publisher = {arXiv:2312.10665},
55
+ year = {2023}
56
+ }
57
  ```