diff --git a/README.md b/README.md
index 49e1147f..9e8c1659 100644
--- a/README.md
+++ b/README.md
@@ -45,13 +45,19 @@ By utilizing high-quality data, we were able to train 🦦 Otter using limited r
## 🦦 Examples
-
+
---
-
+
+
+
+---
+
+
+
---
@@ -101,7 +107,7 @@ Our Otter model is also developed in this way and it's deployed on the 🤗 Hugg
## 🗄 Dataset Preparation
-### Multi-model instruction tuning dataset with in-context examples (ICI)
+### Multi-modal instruction tuning dataset with in-context examples (ICI)
The pre-training process for the OpenFlamingo model employs the MMC4 interleaved multimodality dataset to endow the model with in-context few-shot learning capabilities. The development of our instruction-following dataset adheres to the guiding principles of MMC4, which dictate that the instruction and image examples incorporated into the context should exhibit semantic pertinence to the query instruction and image.
diff --git a/docs/model_card.md b/docs/model_card.md
index 339c4170..80055741 100644
--- a/docs/model_card.md
+++ b/docs/model_card.md
@@ -8,7 +8,7 @@ datasets:
[Code](https://github.com/Luodian/PET-VLM) | [Demo](https://otter.cliangyu.com/)
-Otter is an instruction-following large multi-model model built upon Open-Flamingo-9B. Through in-context instruction following, Otter is able to perform tasks more aligned with human preferences and more accurate.
+Otter is an instruction-following large multi-modal model built upon Open-Flamingo-9B. Through in-context instruction following, Otter is able to perform tasks more aligned with human preferences and more accurate.
## Model Details
diff --git a/pipeline/serve/gradio_web_server.py b/pipeline/serve/gradio_web_server.py
index 32bedc37..4c7568e5 100644
--- a/pipeline/serve/gradio_web_server.py
+++ b/pipeline/serve/gradio_web_server.py
@@ -458,7 +458,7 @@ def http_bot(
| Choose a model to chat with | |
@@ -625,7 +625,7 @@ def build_demo(embed_mode):
gr.Examples(
examples=[
[f"{cur_dir}/examples/cat.jpg", "An image of", "two cats.", f"{cur_dir}/examples/bathroom.jpg", "An image of", "a bathroom sink.", f"{cur_dir}/examples/dinner.jpg", "An image of"],
- [f"{cur_dir}/examples/baseball.jpg", "What is the potential danger of this sport?", "bumped into others while chasing ball.", f"{cur_dir}/examples/tennis.jpg", "What is the potential danger of this sport?", "hitted by the tennis ball.", f"{cur_dir}/examples/soccer.png", "What is the potential danger of this sport?"],
+ [f"{cur_dir}/examples/tennis.jpg", "What is the danger of this sport?", "The player may get hitted by the tennis ball.", f"{cur_dir}/examples/baseball.jpg", "What is the danger of this sport?", "While chasing the baseball, the player may inadvertently collide with other players.", f"{cur_dir}/examples/soccer.png", "What is the danger of this sport?"],
],
inputs=[
imagebox_demo_1,