Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ with gr.Blocks() as demo:
|
|
67 |
input_num = gr.Slider(5, 200, value=10, label="Count", info="Number of nodes in the graph to be generated")
|
68 |
with gr.Column():
|
69 |
gr.Markdown("### Suggested Prompts")
|
70 |
-
gr.Markdown("1. Create a complex network with high clustering coefficient.\n2. Create a graph with extremely low number of triangles.")
|
71 |
|
72 |
with gr.Row() as output_row:
|
73 |
output_images = [gr.Image(label = f"Generated Network #{_}") for _ in range(5)]
|
|
|
67 |
input_num = gr.Slider(5, 200, value=10, label="Count", info="Number of nodes in the graph to be generated")
|
68 |
with gr.Column():
|
69 |
gr.Markdown("### Suggested Prompts")
|
70 |
+
gr.Markdown("1. Create a complex network with high clustering coefficient, exhibiting a very dense connection.\n2. Create a graph with extremely low number of triangles, which means it has very low clustering coefficient.")
|
71 |
|
72 |
with gr.Row() as output_row:
|
73 |
output_images = [gr.Image(label = f"Generated Network #{_}") for _ in range(5)]
|