File size: 393 Bytes
4b714e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)