Daniel Kulik

Results 5 comments of Daniel Kulik

Thanks, excellent! Your package has been a real help with a current project but I needed it to get results faster. This was the outcome; hope it works out.

@nickkunz, thank you. It can be implemented without additional libraries but it will take some effort (there are 23 distance metrics that will all have to be rewritten) and the...

@nickkunz any new updates on this PR?

@moezali1 I would definitely like to, though assistance would be really helpful.

If you still want to maintain the current sklearn requirement, here is a possible option: ``` from packaging.version import Version import sklearn import sklearn.utils.metaestimators sk_version = 1 if Version(sklearn.__version__)>=Version('1.3.0') else...