Update app.py
Browse files
app.py
CHANGED
@@ -188,7 +188,6 @@ def main() -> None:
|
|
188 |
fn=handler,
|
189 |
inputs=[
|
190 |
gr.File(
|
191 |
-
value='java.tsv',
|
192 |
file_types=['.tsv', '.csv'],
|
193 |
label='Graph'
|
194 |
),
|
@@ -211,6 +210,10 @@ def main() -> None:
|
|
211 |
label='Graph'
|
212 |
)
|
213 |
],
|
|
|
|
|
|
|
|
|
214 |
title='Structure Discovery with Watset',
|
215 |
description='''
|
216 |
**Watset** is a powerful algorithm for structure discovery in graphs.
|
|
|
188 |
fn=handler,
|
189 |
inputs=[
|
190 |
gr.File(
|
|
|
191 |
file_types=['.tsv', '.csv'],
|
192 |
label='Graph'
|
193 |
),
|
|
|
210 |
label='Graph'
|
211 |
)
|
212 |
],
|
213 |
+
examples=[
|
214 |
+
['java.tsv', 'Watset[MCL, CW_lin]', 0],
|
215 |
+
['java.tsv', 'MaxMax', 0]
|
216 |
+
],
|
217 |
title='Structure Discovery with Watset',
|
218 |
description='''
|
219 |
**Watset** is a powerful algorithm for structure discovery in graphs.
|