Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -218,8 +218,13 @@ def download_csv(df: pd.DataFrame) -> str:
|
|
| 218 |
# Create the Gradio interface
|
| 219 |
def create_interface():
|
| 220 |
with gr.Blocks(title="MOSTLY AI Synthetic Data Generator", theme=gr.themes.Soft()) as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 221 |
gr.Markdown("""
|
| 222 |
-
# MOSTLY AI
|
| 223 |
|
| 224 |
[Documentation](https://mostly-ai.github.io/mostlyai/) | [Technical White Paper](https://arxiv.org/abs/2508.00718) | [Usage Examples](https://mostly-ai.github.io/mostlyai/usage/) | [Free Cloud Service](https://app.mostly.ai/)
|
| 225 |
|
|
@@ -242,9 +247,6 @@ def create_interface():
|
|
| 242 |
- Connect to data source: `c = mostly.connect(config)`
|
| 243 |
""")
|
| 244 |
|
| 245 |
-
# display image above tabs
|
| 246 |
-
gr.Image(value="https://img.mailinblue.com/8225865/images/content_library/original/6880d164e4e4ea1a183ad4c0.png", show_label=False, elem_id="header-image")
|
| 247 |
-
|
| 248 |
with gr.Tab("Quick Start"):
|
| 249 |
gr.Markdown("### Initialize the SDK and upload your data")
|
| 250 |
|
|
|
|
| 218 |
# Create the Gradio interface
|
| 219 |
def create_interface():
|
| 220 |
with gr.Blocks(title="MOSTLY AI Synthetic Data Generator", theme=gr.themes.Soft()) as demo:
|
| 221 |
+
|
| 222 |
+
# display image above tabs
|
| 223 |
+
gr.Image(value="https://img.mailinblue.com/8225865/images/content_library/original/6880d164e4e4ea1a183ad4c0.png", show_label=False, elem_id="header-image")
|
| 224 |
+
|
| 225 |
+
# README
|
| 226 |
gr.Markdown("""
|
| 227 |
+
# Synthetic Data SDK by MOSTLY AI Demo Space
|
| 228 |
|
| 229 |
[Documentation](https://mostly-ai.github.io/mostlyai/) | [Technical White Paper](https://arxiv.org/abs/2508.00718) | [Usage Examples](https://mostly-ai.github.io/mostlyai/usage/) | [Free Cloud Service](https://app.mostly.ai/)
|
| 230 |
|
|
|
|
| 247 |
- Connect to data source: `c = mostly.connect(config)`
|
| 248 |
""")
|
| 249 |
|
|
|
|
|
|
|
|
|
|
| 250 |
with gr.Tab("Quick Start"):
|
| 251 |
gr.Markdown("### Initialize the SDK and upload your data")
|
| 252 |
|