Fix (#52)
Browse files- Fix the camption prompt for Fuyu-8b (abc0647db365eec76b89ba4408fd91f5d9881501)
Co-authored-by: hysts <[email protected]>
app.py
CHANGED
@@ -110,7 +110,7 @@ def generate_caption_fuyu(image_path: str, return_job: bool = False) -> str | Jo
|
|
110 |
try:
|
111 |
client = Client("adept/fuyu-8b-demo")
|
112 |
fn = client.submit if return_job else client.predict
|
113 |
-
return fn(image_path, "Generate a coco style caption
|
114 |
except Exception:
|
115 |
gr.Warning("The Fuyu-8B Space is currently unavailable. Please try again later.")
|
116 |
return ""
|
|
|
110 |
try:
|
111 |
client = Client("adept/fuyu-8b-demo")
|
112 |
fn = client.submit if return_job else client.predict
|
113 |
+
return fn(image_path, "Generate a coco style caption.\n", fn_index=3)
|
114 |
except Exception:
|
115 |
gr.Warning("The Fuyu-8B Space is currently unavailable. Please try again later.")
|
116 |
return ""
|