a186e2aa2857d92d42ced706f09a59f73629d391,wandb/sdk_py27/wandb_init.py,_WandbInit,setup,#_WandbInit#Any#,58

Before Change


        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)

After Change


        )

        sm_config = sagemaker.parse_sm_config()
        if sm_config:
            sm_api_key = sm_config.get("wandb_api_key", None)
            sm_run, sm_env = sagemaker.parse_sm_resources()
            if sm_env:
                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)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


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


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: nilmtk/nilmtk
Commit Name: fec5b38cd84de7f0e12048f7cc5df605dd993af0
Time: 2014-05-09
Author: jack-list@xlk.org.uk
File Name: nilmtk/emeter.py
Class Name: EMeter
Method Name: __hash__