Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -105,11 +105,11 @@ iface = gr.Interface(
|
|
105 |
f"Uses the `{MODEL_IDENTIFIER}` model on Hugging Face. Running on **{str(DEVICE).upper()}**."
|
106 |
),
|
107 |
article=(
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
),
|
114 |
examples=example_images if example_images else None, # Only add examples if found
|
115 |
cache_examples= True if example_images else False, # Cache results for examples if they exist
|
|
|
105 |
f"Uses the `{MODEL_IDENTIFIER}` model on Hugging Face. Running on **{str(DEVICE).upper()}**."
|
106 |
),
|
107 |
article=(
|
108 |
+
"<div>"
|
109 |
+
"<p>This tool uses a SigLIP model fine-tuned for distinguishing between AI-generated and human-made images.</p>"
|
110 |
+
f"<p>Model Card: <a href='https://huggingface.co/{MODEL_IDENTIFIER}' target='_blank'>{MODEL_IDENTIFIER}</a></p>"
|
111 |
+
"<p>Fine tuning code available at <a href='https://exnrt.com/blog/ai/fine-tuning-siglip2/' target='_blank'>https://exnrt.com/blog/ai/fine-tuning-siglip2/</a></p>"
|
112 |
+
"</div>"
|
113 |
),
|
114 |
examples=example_images if example_images else None, # Only add examples if found
|
115 |
cache_examples= True if example_images else False, # Cache results for examples if they exist
|