Levente Csibi
Levente Csibi
I created a simple neural network for binary spam/ham text classification using pretrained BERT transformer. Now I want to apply randomized search for tuning the hyperparameters. For now the only...
I am working on a multilabel classification and for now I have primarily been relying on `RandomizedSearchCV` from `scikit-learn` to perform hyperparameter optimization. I now started experimenting with `BayesSearchCV` and...
I have been struggling with the installation of the original library, BigARTM, for quite a while now, on Windows 10 OS but with no success. I saw my same issue...
How to reproduce the behaviour --------- I am experimenting with sequence labelling using Doccano and found that when I upload a dataset and start the annotation, there is no way...
## 🐛 Bugs / Unexpected behaviors #### Versions Python: 3.8.10 OS: Ubuntu 20.04.5 LTS Poetry: 1.6.1 pip: 23.2.1 #### Description I am trying to set up a poetry environment with...
This PR aims to fix a bug where `DecisionBoundaryDisplay.from_estimator` only displayed up to 7 distinct colors for classifiers with more than 7 classes when using `plot_method="contourf"` or `plot_method="contour"` Fixes https://github.com/scikit-learn/scikit-learn/issues/32866
When using FeatureUnion with set_config(transform_output="polars"), the operation failed with polars.exceptions.DuplicateError because the ContainerAdapterProtocol.hstack() interface was incomplete: it didn't accept a `feature_names` parameter to apply column renaming before concatenation. Fixes https://github.com/scikit-learn/scikit-learn/issues/32852