a186e2aa2857d92d42ced706f09a59f73629d391,wandb/sdk/wandb_init.py,_WandbInit,setup,#_WandbInit#Any#,58
Before Change
if config_include_keys:
init_config = {
key: value
for key, value in iteritems(init_config)
if key in config_include_keys
}
if config_exclude_keys:
init_config = {
key: value
for key, value in iteritems(init_config)
if key not in config_exclude_keys
}
// merge config with sweep (or config file)
self.config = self._wl._config or dict()
for k, v in init_config.items():
After Change
if sm_api_key:
sm_env["WANDB_API_KEY"] = sm_api_key
settings._apply_environ(sm_env)
for k, v in six.iteritems(sm_run):
kwargs.setdefault(k, v)
// Remove parameters that are not part of settings
init_config = kwargs.pop("config", None) or dict()
config_include_keys = kwargs.pop("config_include_keys", None)
config_exclude_keys = kwargs.pop("config_exclude_keys", None)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 7
Instances
Project Name: wandb/client
Commit Name: a186e2aa2857d92d42ced706f09a59f73629d391
Time: 2020-08-31
Author: jeff@wandb.com
File Name: wandb/sdk/wandb_init.py
Class Name: _WandbInit
Method Name: setup
Project Name: deepfakes/faceswap
Commit Name: 4376bbf4f85f9771b0e3752ccf9504efb4e43d21
Time: 2019-01-22
Author: 36920800+torzdf@users.noreply.github.com
File Name: tools/lib_alignments/media.py
Class Name: Faces
Method Name: load_items
Project Name: wandb/client
Commit Name: a186e2aa2857d92d42ced706f09a59f73629d391
Time: 2020-08-31
Author: jeff@wandb.com
File Name: wandb/sdk_py27/wandb_init.py
Class Name: _WandbInit
Method Name: setup