Spaces:
Runtime error
Runtime error
| from mrunner.helpers.client_helper import get_configuration | |
| import wandb | |
| from run import main | |
| if __name__ == "__main__": | |
| config = get_configuration(print_diagnostics=True, with_neptune=False) | |
| del config["experiment_id"] | |
| if config.log_to_wandb: | |
| wandb.init( | |
| entity="gmum", | |
| project="apple", | |
| config=config, | |
| ) | |
| main(**config) | |