autofeat icon indicating copy to clipboard operation
autofeat copied to clipboard

Linear Prediction Model with Automated Feature Engineering and Selection Capabilities

Results 9 autofeat issues
Sort by recently updated
recently updated
newest added

Facing the following issue when running `AutoFeatRegressor.fit_transform(featuresDf, targetFeature)`: Already checked if there are any infinity values or nan. Also, converted everything to float32. Any pointers? Thanks! Update: tried the same...

enhancement

Minor point but it would be great if I could create my own dict of ureg objects and pass them instead of a s dict of strings that need parsed.

enhancement

Thank you for the great product! My question is - how can I speed up .tranform() function. I use for input dataframe with only ONE row, but the time needed...

Hi! While trying to use the AutoFeatClassifier using units, I stumbled upon a validation error caused by an infinite value. Presumably one of the generated features (I assume from the...

Great package! Have you looked into using joblib on this loop, for i, (feat1, feat2) in enumerate(feature_tuples) in feateng.py? Seems like it could be easily parallelized. You have several global...

Every time I call fit_transform I get different results. I noticed that np.random.permutation changes the random_state, so I used np.random.RandomState(seed=seed).permutation() to solve. I also noticed that np.random.seed(i) is used in...

I was thinking of using cython to run autofeat in C and changing some of the variables to static. Do you think this would make autofeat significantly faster?

Hello, I noticed that results are not reproducible by using the library i.e. when using sklearn drop-down-replacement classes, they will each time produce slightly different results. For example, when using:...