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

Before Change


                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


        )

        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: 7

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: facebookresearch/ParlAI
Commit Name: 2d25e783797d0918e30de45ab009c35e847fe20b
Time: 2020-03-23
Author: roller@fb.com
File Name: parlai/agents/transformer/modules.py
Class Name: TransformerDecoder
Method Name: forward


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