def sklearn_predict() -> None: """Parses scikit-learn predicting arguments and runs prediction using a trained scikit-learn model. This is the entry point for the command line command :code:`sklearn_predict`. """ predict_sklearn(args=SklearnPredictArgs().parse_args())
from chemprop.args import SklearnPredictArgs from chemprop.sklearn_predict import predict_sklearn if __name__ == '__main__': predict_sklearn(SklearnPredictArgs().parse_args())
def sklearn_predict() -> None: """Runs sklearn predicting.""" predict_sklearn(SklearnPredictArgs().parse_args())