shauray commited on
Commit
221e1ae
·
1 Parent(s): 31644ce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -6,7 +6,7 @@ tags:
6
  - 'LLaMA '
7
  - MultiModal
8
  ---
9
- *This is a Hugging Face friendly Model, the original can be found https://huggingface.co/liuhaotian/llava-llama-2-7b-chat-lightning-lora-preview*
10
  <br>
11
  # LLaVA Model Card
12
 
@@ -17,7 +17,7 @@ LLaVA is an open-source chatbot trained by fine-tuning LLaMA/Vicuna on GPT-gener
17
  It is an auto-regressive language model, based on the transformer architecture.
18
 
19
  **Model date:**
20
- LLaVA-LLaMA-2-13B-Chat-Preview was trained in July 2023.
21
 
22
  **Paper or resources for more information:**
23
  https://llava-vl.github.io/
@@ -64,6 +64,7 @@ inputs = processor(text=prompt, images=image, return_tensors="pt")
64
  # Generate
65
  generate_ids = model.generate(**inputs, max_length=30)
66
  tokenizer.batch_decode(generate_ids, skip_special_tokens=True)[0]
 
67
  """The photograph shows a wooden dock floating on the water, with mountains in the background. It is an idyllic scene that captures both
68
  nature and human-made structures at their finest moments of beauty or tranquility depending upon one's perspective as they gaze into it"""
69
  ```
 
6
  - 'LLaMA '
7
  - MultiModal
8
  ---
9
+ *This is a Hugging Face friendly Model, the original can be found at https://huggingface.co/liuhaotian/llava-llama-2-7b-chat-lightning-lora-preview*
10
  <br>
11
  # LLaVA Model Card
12
 
 
17
  It is an auto-regressive language model, based on the transformer architecture.
18
 
19
  **Model date:**
20
+ LLaVA-LLaMA-2-7B-Chat-LoRA-Preview was trained in July 2023.
21
 
22
  **Paper or resources for more information:**
23
  https://llava-vl.github.io/
 
64
  # Generate
65
  generate_ids = model.generate(**inputs, max_length=30)
66
  tokenizer.batch_decode(generate_ids, skip_special_tokens=True)[0]
67
+
68
  """The photograph shows a wooden dock floating on the water, with mountains in the background. It is an idyllic scene that captures both
69
  nature and human-made structures at their finest moments of beauty or tranquility depending upon one's perspective as they gaze into it"""
70
  ```