jykim310 commited on
Commit
d96a967
1 Parent(s): d19f26c

add terms of use

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -34,4 +34,15 @@ inputs = processor(prompt, raw_image, return_tensors='pt').to(0, torch.float16)
34
 
35
  output = model.generate(**inputs, max_new_tokens=200, do_sample=False)
36
  print(processor.decode(output[0][inputs['input_ids'].shape[-1]:], skip_special_tokens=True))
37
- ```
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  output = model.generate(**inputs, max_new_tokens=200, do_sample=False)
36
  print(processor.decode(output[0][inputs['input_ids'].shape[-1]:], skip_special_tokens=True))
37
+ ```
38
+
39
+ ## Terms of use
40
+ The vision-language model published in this repository was developed by combining several modules (e.g., vision encoder, language model). Commercial use of any modifications, additions, or newly trained parameters made to combine these modules is not allowed.
41
+ However, commercial use of the unmodified modules is allowed under their respective licenses. If you wish to use the individual modules commercially, you may refer to their original repositories and licenses provided below.
42
+
43
+
44
+ Vision encoder (license) link : [Model](https://huggingface.co/openai/clip-vit-base-patch16), [License](https://github.com/openai/CLIP/blob/main/LICENSE)
45
+
46
+ Language model (license) link : [Model](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct), [License](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct/resolve/main/LICENSE)
47
+
48
+ VLM framework (license) link: [Github](https://github.com/haotian-liu/LLaVA), [License](https://github.com/haotian-liu/LLaVA/blob/main/LICENSE)