Mercurial > repos > goeckslab > pycaret_predict
comparison pycaret_train.py @ 3:ccd798db5abb draft
planemo upload for repository https://github.com/goeckslab/Galaxy-Pycaret commit cf47efb521b91a9cb44ae5c5ade860627f9b9030
| author | goeckslab |
|---|---|
| date | Tue, 03 Jun 2025 19:31:06 +0000 |
| parents | 1f20fe57fdee |
| children | f4cb41f458fd |
comparison
equal
deleted
inserted
replaced
| 2:0314dad38aaa | 3:ccd798db5abb |
|---|---|
| 1 import argparse | 1 import argparse |
| 2 import logging | 2 import logging |
| 3 | 3 |
| 4 from pycaret_classification import ClassificationModelTrainer | 4 from pycaret_classification import ClassificationModelTrainer |
| 5 | |
| 6 from pycaret_regression import RegressionModelTrainer | 5 from pycaret_regression import RegressionModelTrainer |
| 7 | 6 |
| 8 logging.basicConfig(level=logging.DEBUG) | 7 logging.basicConfig(level=logging.DEBUG) |
| 9 LOG = logging.getLogger(__name__) | 8 LOG = logging.getLogger(__name__) |
| 10 | 9 |
