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
We already offer several methods for creating the perturbation space. In addition to rather simple ones (Pseudobulk and Centroid Space), we also provide the DiscriminatorClassifierSpace where we train an MLP. Depending on the dataset, the training process can take quite long. Therefore, I would like to propose an additional ML-based approach, but one that is very simple.
I have done some tests with a logistic regression classifier using the Norman dataset, and the results look quite promising. Hence, I suggest adding a logistic regression classifier as an alternative to the MLP-based discrimination classifier.
Regarding the integration into the API, there are two options, and I would like to use this issue to start a discussion on which option people prefer:
Integrating it as another independent class and renaming the DiscriminatorClassifierSpace to something that clearly indicates the use of an MLP.
Integrating it into the already existing DiscriminatorClassifierSpace class and adding a parameter model, which can be either Regressor or MLP.
The text was updated successfully, but these errors were encountered:
Description of feature
We already offer several methods for creating the perturbation space. In addition to rather simple ones (Pseudobulk and Centroid Space), we also provide the
DiscriminatorClassifierSpace
where we train an MLP. Depending on the dataset, the training process can take quite long. Therefore, I would like to propose an additional ML-based approach, but one that is very simple.I have done some tests with a logistic regression classifier using the Norman dataset, and the results look quite promising. Hence, I suggest adding a logistic regression classifier as an alternative to the MLP-based discrimination classifier.
Regarding the integration into the API, there are two options, and I would like to use this issue to start a discussion on which option people prefer:
DiscriminatorClassifierSpace
to something that clearly indicates the use of an MLP.DiscriminatorClassifierSpace
class and adding a parametermodel
, which can be eitherRegressor
orMLP
.The text was updated successfully, but these errors were encountered: