Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
Deci-AI:master
deci-ai:feature/SG-713-ppyolo
""" Entry point for training from a recipe using SuperGradients. General use: python -m super_gradients.train_from_recipe --config-name="DESIRED_RECIPE". For recipe's specific instructions and details refer to the recipe's configuration file in the recipes directory. """ from omegaconf import DictConfig import hydra import pkg_resources from super_gradients import Trainer, init_trainer @hydra.main(config_path=pkg_resources.resource_filename("super_gradients.recipes", ""), version_base="1.2") def main(cfg: DictConfig) -> None: Trainer.train_from_config(cfg) def run(): init_trainer() main() if __name__ == "__main__": run()
Press p or to see the previous file or, n or to see the next file