julianSchilcher / LMU_Master_Practical_SoSe24

Dummy project for the LMU master practical summer semester 2024
0 stars 0 forks source link

Implement Dendrogram + Leaf purity measures for DeepECT #22

Closed roebbert92 closed 4 months ago

roebbert92 commented 4 months ago

My understanding from the supplied code:

  1. They construct a tree with nodes containing the indices of the dataset as assignments

We need to:

  1. output from the predict method a clustering tree containing the indices of the dataset as assignments
jian7star commented 4 months ago

yes

yu88zh commented 4 months ago

we've seen the Dendrogram method u did, we actually have our method done. The method contains two inputs, first is the tree and second is the ground truth. As mentioned last meeting, the problem is how to get the first input from deepect.py ?rather than how to implement. 😊

roebbert92 commented 4 months ago

Can you then please point me to where your code is? Because all I see that you just copied the code from the paper...

jian7star commented 4 months ago

I upload the deepect with the dendrogram and leaf purity measurement as "deepect_with_hierachical".