aikit icon indicating copy to clipboard operation
aikit copied to clipboard

Automated machine learning package

Results 31 aikit issues
Sort by recently updated
recently updated
newest added

# Patching CVE-2007-4559 Hi, we are security researchers from the Advanced Research Center at [Trellix](https://www.trellix.com). We have began a campaign to patch a widespread bug named CVE-2007-4559. CVE-2007-4559 is a...

Issue identified when running automlbenchmark on adult census dataset: https://www.openml.org/d/1590

bug

Fit model ends with when an optimization error occurs during LogisticRegression fit: ``` in _check_optimize_result ).format(solver, result.status, result.message.decode("latin1")) AttributeError: 'str' object has no attribute 'decode' ``` https://github.com/scikit-optimize/scikit-optimize/issues/981

bug

Refactoring of the auto machine learning module

Traceback: ``` --------------------------------------------------------------------------- ImportError Traceback (most recent call last) in ----> 1 from aikit.ml_machine.default import get_default_pipeline 2 from aikit.pipeline import GraphPipeline 3 from aikit.transformers import TruncatedSVDWrapper 4 from aikit.transformers.text import...

bug

WIP Documentation on some advanced functionnalities of the GraphPipeline

https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.HistGradientBoostingClassifier.html

good first issue

NumericalEncoder currently encodes categories to integers, without considering the integer type. Downcasting integers to int8 or int16 when possible could sometimes significantly reduce memory and avoid some memory overhead. import...