You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+48Lines changed: 48 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,54 @@ All the other functions contains functions used for the clustering.
7
7
8
8
## Dependencies
9
9
This code has been executed with `python3` with the library indicated in `requirements.txt`. Additionaly, it is necessary to have R installed with the library `conclust`.
Import your library in `Experiments.ipynb` and select the algorithms that you want to run. The execution of the notebook saves all results in the result folder (indicated in `config.py` with the timestamp indicated when you run the experiments notebook). Copy this timestamp in the `dates` list in `Visualizations.ipynb` to compare the results (you can indicate several dates to compare methods computed at different time).
20
+
21
+
## How to run our model on your dataset ?
22
+
23
+
### Kernel Clustering
24
+
#### Open your data and constraints
25
+
```
26
+
import pandas as pd
27
+
import numpy as np
28
+
29
+
dname = 'data' # Data name - Used for saving kernels
0 commit comments