We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If we have a model that has no y values when training, ML-tooling will fail, as it always does a train_test_split which fails when y is None.
To Reproduce Steps to reproduce the behavior:
y=None
class RandomRankEstimator(BaseEstimator, ClassifierMixin): def fit(x, y=None): ... do modelstuff here... def predict(x): ...predict... class CovRanker(ModelData): def get_training_data(): return x, None def get_prediction_data(x): return x model = CovRanker(RandomRankEstimator) model.train_estimator()
Expected behavior .train_estimator should not fail if no y value is supplied
.train_estimator
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Could be solved in #275
Sorry, something went wrong.
solved by #348
No branches or pull requests
If we have a model that has no y values when training, ML-tooling will fail, as it always does a train_test_split which fails when y is None.
To Reproduce
Steps to reproduce the behavior:
y=None
Expected behavior
.train_estimator
should not fail if no y value is suppliedAdditional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: