wandb fixes
This commit is contained in:
parent
4efa081d73
commit
a1619bcd04
@ -14,6 +14,7 @@ d = pdb.set_trace
|
|||||||
|
|
||||||
REQUIRE_CONFIG_CONSUMED = False
|
REQUIRE_CONFIG_CONSUMED = False
|
||||||
WANDB_START_METHOD = 'fork'
|
WANDB_START_METHOD = 'fork'
|
||||||
|
REINIT = True
|
||||||
|
|
||||||
Parallelization_Primitive = Thread # Process
|
Parallelization_Primitive = Thread # Process
|
||||||
|
|
||||||
@ -236,7 +237,7 @@ class Slate():
|
|||||||
with wandb.init(
|
with wandb.init(
|
||||||
project=project,
|
project=project,
|
||||||
config=copy.deepcopy(config),
|
config=copy.deepcopy(config),
|
||||||
reinit=True,
|
reinit=REINIT,
|
||||||
settings=wandb.Settings(start_method=WANDB_START_METHOD),
|
settings=wandb.Settings(start_method=WANDB_START_METHOD),
|
||||||
**wandbC
|
**wandbC
|
||||||
) as run:
|
) as run:
|
||||||
@ -258,7 +259,7 @@ class Slate():
|
|||||||
|
|
||||||
with wandb.init(
|
with wandb.init(
|
||||||
project=project,
|
project=project,
|
||||||
reinit=True,
|
reinit=REINIT,
|
||||||
settings=wandb.Settings(start_method=WANDB_START_METHOD),
|
settings=wandb.Settings(start_method=WANDB_START_METHOD),
|
||||||
**wandbC
|
**wandbC
|
||||||
) as run:
|
) as run:
|
||||||
|
Loading…
Reference in New Issue
Block a user