JunnanLi commited on
Commit
89a0b71
1 Parent(s): bf4de30

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -36,11 +36,26 @@ This allows the model to be used for tasks like:
36
  - visual question answering (VQA)
37
  - chat-like conversations by feeding the image and the previous conversation as prompt to the model
38
 
39
- ## Intended uses & limitations
40
 
41
  You can use the raw model for conditional text generation given an image and optional text. See the [model hub](https://huggingface.co/models?search=Salesforce/blip) to look for
42
  fine-tuned versions on a task that interests you.
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  ### How to use
45
 
46
  For code examples, we refer to the [documentation](https://huggingface.co/docs/transformers/main/en/model_doc/blip-2#transformers.Blip2ForConditionalGeneration.forward.example).
36
  - visual question answering (VQA)
37
  - chat-like conversations by feeding the image and the previous conversation as prompt to the model
38
 
39
+ ## Direct Use and Downstream Use
40
 
41
  You can use the raw model for conditional text generation given an image and optional text. See the [model hub](https://huggingface.co/models?search=Salesforce/blip) to look for
42
  fine-tuned versions on a task that interests you.
43
 
44
+ ## Bias, Risks, Limitations, and Ethical Considerations
45
+
46
+ BLIP2-OPT uses off-the-shelf OPT as the language model. It inherits the same risks and limitations as mentioned in Meta's model card.
47
+
48
+ > Like other large language models for which the diversity (or lack thereof) of training
49
+ > data induces downstream impact on the quality of our model, OPT-175B has limitations in terms
50
+ > of bias and safety. OPT-175B can also have quality issues in terms of generation diversity and
51
+ > hallucination. In general, OPT-175B is not immune from the plethora of issues that plague modern
52
+ > large language models.
53
+ >
54
+ BLIP2 is fine-tuned on image-text datasets (e.g. [LAION](https://laion.ai/blog/laion-400-open-dataset/) ) collected from the internet. As a result the model itself is potentially vulnerable to generating equivalently inappropriate content or replicating inherent biases in the underlying data.
55
+
56
+ BLIP2 has not been tested in real world applications. It should not be directly deployed in any applications. Researchers should first carefully assess the safety and fairness of the model in relation to the specific context they’re being deployed within.
57
+
58
+
59
  ### How to use
60
 
61
  For code examples, we refer to the [documentation](https://huggingface.co/docs/transformers/main/en/model_doc/blip-2#transformers.Blip2ForConditionalGeneration.forward.example).