DenStream
DenStream copied to clipboard
fixed eps for dbscan when clustering micro clusters?
Hi! I was reading the code and came across this:
file DenStream.py, line 130: dbscan = DBSCAN(eps=0.3, algorithm='brute')
I'm trying to understand the algorithm so here are my questions:
- why setting a fixed DBSCAN eps param? shouldn't it vary according to every problem/data set?
- if fixed, why 0.3 instead of another value?
Reading the MOA (Java framework) DenStream implementation, I found the following: a constant is multiplied to the original parametrized 'epsilon' to get the value of the DBSCAN epsilon ...
https://github.com/Waikato/moa/blob/master/moa/src/main/java/moa/clusterers/denstream/WithDBSCAN.java
Hi @onofricamila! Thank you for your remark. This was a university project for me and I had no intention of maintaining the repository when I published it. Feel free to submit a PR though.