Spaces:
Sleeping
Sleeping
Commit ·
7fb20c8
1
Parent(s): c43dd8e
Update description in app
Browse files
app.py
CHANGED
|
@@ -257,10 +257,18 @@ if __name__ == "__main__":
|
|
| 257 |
# Create and launch the interface
|
| 258 |
demo = create_interface()
|
| 259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 260 |
# Launch the app
|
| 261 |
demo.launch(
|
| 262 |
share=True, # Set to True to create a public link
|
| 263 |
server_name="0.0.0.0", # Allow access from any IP
|
| 264 |
server_port=7860, # Default Gradio port
|
| 265 |
-
show_error=True
|
| 266 |
-
|
|
|
|
| 257 |
# Create and launch the interface
|
| 258 |
demo = create_interface()
|
| 259 |
|
| 260 |
+
description = """
|
| 261 |
+
### 🧠 Curious how this model was trained?
|
| 262 |
+
Check out the [Kaggle Notebook](https://www.kaggle.com/code/williamwillj/bear-detector)
|
| 263 |
+
|
| 264 |
+
### 🚀 Try the model live here:
|
| 265 |
+
You're already using it! This app is hosted on [Hugging Face Spaces](https://huggingface.co/spaces/williamj949/bear-detector)
|
| 266 |
+
"""
|
| 267 |
+
|
| 268 |
# Launch the app
|
| 269 |
demo.launch(
|
| 270 |
share=True, # Set to True to create a public link
|
| 271 |
server_name="0.0.0.0", # Allow access from any IP
|
| 272 |
server_port=7860, # Default Gradio port
|
| 273 |
+
show_error=True,
|
| 274 |
+
description=description)
|