Laurenz Farthofer

Results 12 comments of Laurenz Farthofer

Which parts of the documentation are you referring to specifically?

I was not aware that there is an interpreter feature in pythons `cmd` module 🤓 The idea of a shell is interesting, but a bit unconventional. The package API is...

Some things I identified to implement the new feature: ## ✅ Checklist - [x] understand core APIs and concepts for the classification tasks - [x] understand data handling in NiaAML...

I just had my first read trhough the README, documentation and the tests. ## 🔥Problem Imho. the codebase has a rather high coupling to the classification task specifics and not...

The coupling to the classification specifics is higher than I originally thought. I also have to adapt the feature selection and pipeline optimization part, since those currently assume fitness functions...

I need some help in understanding https://github.com/firefly-cpp/NiaAML/blob/master/niaaml/pipeline.py#L468 - https://github.com/firefly-cpp/NiaAML/blob/master/niaaml/pipeline.py#L491 ```python for i in params_all: args = dict() for key in i[0]: if i[0][key] is not None: if isinstance(i[0][key].value, MinMax): val...

I found the explanation here: https://niaaml.readthedocs.io/en/latest/getting_started.html#optimization-process-and-parameter-tuning

I will create a CLI tool in the following days :)

I finished a prototype yesterday evening. I tried to stick to the original argument and keyword argument names as close as possible. If you want to modify the names (or...

what does the squasching operation do? I found that `arm-preprocessing` just calls https://github.com/firefly-cpp/NiaARM/blob/main/niaarm/preprocessing.py#L34 Can this be implemented as a `FeatureTransformAlgorithm`?