Update app.py
Browse files
app.py
CHANGED
@@ -216,10 +216,17 @@ def main() -> None:
|
|
216 |
],
|
217 |
title='Structure Discovery with Watset',
|
218 |
description='''
|
219 |
-
**Watset** is a powerful algorithm for structure discovery in graphs.
|
220 |
|
221 |
By capturing the ambiguity of nodes in a graph, Watset efficiently finds clusters in the input data.
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
Whether you're working with linguistic data or other networks, Watset is the go-to solution for unlocking hidden patterns and structures.
|
224 |
''',
|
225 |
article='''
|
|
|
216 |
],
|
217 |
title='Structure Discovery with Watset',
|
218 |
description='''
|
219 |
+
**Watset** is a powerful algorithm for structure discovery in undirected graphs.
|
220 |
|
221 |
By capturing the ambiguity of nodes in a graph, Watset efficiently finds clusters in the input data.
|
222 |
|
223 |
+
As the input, this tool expects [edge list](https://en.wikipedia.org/wiki/Edge_list) as a comma-separated (CSV) file without header.
|
224 |
+
Each line of the file should contain three columns:
|
225 |
+
|
226 |
+
- `source`: edge source
|
227 |
+
- `target`: edge target
|
228 |
+
- `weight`: edge weight
|
229 |
+
|
230 |
Whether you're working with linguistic data or other networks, Watset is the go-to solution for unlocking hidden patterns and structures.
|
231 |
''',
|
232 |
article='''
|