e07f9a24e60a8acc756efc0728adb257d0474c2f,catalyst/rl/db/redis.py,RedisDB,sampling_enabled,#RedisDB#,25
Before Change
@property
def sampling_enabled(self) -> bool:
flag = self._server.get("sampling_flag")
flag = flag if flag is not None else -1 // disabled by default
flag = int(flag) == int(1)
return flag
After Change
@property
def sampling_enabled(self) -> bool:
flag = self._get_flag("sampling_flag", -1) // disabled by default
flag = int(flag) == int(1)
return flag
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 5
Instances
Project Name: catalyst-team/catalyst
Commit Name: e07f9a24e60a8acc756efc0728adb257d0474c2f
Time: 2019-07-23
Author: scitator@gmail.com
File Name: catalyst/rl/db/redis.py
Class Name: RedisDB
Method Name: sampling_enabled
Project Name: Scitator/catalyst
Commit Name: e07f9a24e60a8acc756efc0728adb257d0474c2f
Time: 2019-07-23
Author: scitator@gmail.com
File Name: catalyst/rl/db/redis.py
Class Name: RedisDB
Method Name: training_enabled