コード例 #1
0
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())
コード例 #2
0
ファイル: sklearn_predict.py プロジェクト: ziqi92/chemprop
from chemprop.args import SklearnPredictArgs
from chemprop.sklearn_predict import predict_sklearn


if __name__ == '__main__':
    predict_sklearn(SklearnPredictArgs().parse_args())
コード例 #3
0
def sklearn_predict() -> None:
    """Runs sklearn predicting."""
    predict_sklearn(SklearnPredictArgs().parse_args())