Spaces:
Runtime error
Runtime error
Commit
·
c1b9f92
1
Parent(s):
a30d891
pro_tip (#12)
Browse files- add pro tip (05d9f268384e9f932e617463e67af231db245ce2)
- add info (19879000bc7b8788974c68045cd8edafacc63f5e)
- new line (a2880bfe2be845e24bc11eaf7a83cabfc9117e21)
- fix (b879b2922feb794368c7ac0ed7612530861b137e)
- fix (5453add22e0e7cf0ec41f3ca89f499e9a9ac3455)
- some tiny wording (4ecc8fd734124db37726ebfb5e38cfe3b15afb98)
- oops (b9ad1443c36ffe51ed14c49e2fcf095cc85c0a4d)
Co-authored-by: Hugo Laurençon <[email protected]>
- app_dialogue.py +7 -0
app_dialogue.py
CHANGED
@@ -475,6 +475,13 @@ with gr.Blocks(title="IDEFICS Playground", theme=gr.themes.Base()) as demo:
|
|
475 |
inputs=decoding_strategy,
|
476 |
outputs=top_p,
|
477 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
|
479 |
def model_inference(
|
480 |
model_selector,
|
|
|
475 |
inputs=decoding_strategy,
|
476 |
outputs=top_p,
|
477 |
)
|
478 |
+
gr.Markdown(
|
479 |
+
"""**💡 Pro tip**:\\
|
480 |
+
You can input an arbitrary number of images at arbitrary positions in the same query.\\
|
481 |
+
You will need to input each image with its URL with the syntax `<fake_token_around_image><image:IMAGE_URL><fake_token_around_image>`.\\
|
482 |
+
For example, for two images, you could input `TEXT_1<fake_token_around_image><image:IMAGE_URL_1><fake_token_around_image>TEXT_2<fake_token_around_image><image:IMAGE_URL_2><fake_token_around_image>TEXT_3`.\\
|
483 |
+
In the particular case where two images are consecutive, it is not necessary to add an additional separator: `<fake_token_around_image><image:IMAGE_URL_1><fake_token_around_image><image:IMAGE_URL_2><fake_token_around_image>`."""
|
484 |
+
)
|
485 |
|
486 |
def model_inference(
|
487 |
model_selector,
|