Apple / mrunner_run.py
New Author Name
init
4b714e2
raw
history blame contribute delete
393 Bytes
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)