Mercurial > repos > goeckslab > pycaret_compare
comparison pycaret_train.py @ 4:4aa511539199 draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Pycaret commit cf47efb521b91a9cb44ae5c5ade860627f9b9030
| author | goeckslab |
|---|---|
| date | Tue, 03 Jun 2025 19:31:16 +0000 |
| parents | 915447b14520 |
| children |
comparison
equal
deleted
inserted
replaced
| 3:02f7746e7772 | 4:4aa511539199 |
|---|---|
| 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 |
