c8b28432a637a780eed96547260722ff3dede57e,niftynet/engine/sampler_selective.py,,create_label_size_map,#Any#Any#,140
Before Change
data = np.round(data)
labels = np.unique(data)
print("Labels are ", labels)
binary_seg = np.copy(data)
binary_seg = np.where(binary_seg == value, np.ones_like(data),
np.zeros_like(data))
labelled_data, num_features = ndimage.label(binary_seg)
print("Labelling features done")
unique, count = np.unique(labelled_data, return_counts=True)
count_data = np.copy(labelled_data)
for u, c in zip(unique, count):
After Change
unique, count = np.unique(labelled_data, return_counts=True)
count_data = np.copy(labelled_data)
for label, size in zip(unique, count):
if label == 0:
continue
count_data = np.where(labelled_data == label,
np.ones_like(data) * size,
count_data)
return count_data

In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 4
Instances
Project Name: NifTK/NiftyNet
Commit Name: c8b28432a637a780eed96547260722ff3dede57e
Time: 2017-10-04
Author: wenqi.li@ucl.ac.uk
File Name: niftynet/engine/sampler_selective.py
Class Name:
Method Name: create_label_size_map
Project Name: ray-project/ray
Commit Name: b796de41049aa3b3696a6b7242799284c3f0c641
Time: 2021-01-20
Author: ed.nmi.oakes@gmail.com
File Name: python/ray/util/metrics.py
Class Name: Metric
Method Name: record
Project Name: ray-project/ray
Commit Name: 2e3655e8a9b1e37fa6e29f11db02a6b53cfb5928
Time: 2021-01-19
Author: sven@anyscale.io
File Name: rllib/agents/ppo/tests/test_ppo.py
Class Name: TestPPO
Method Name: test_ppo_loss_function
Project Name: ray-project/ray
Commit Name: 2e3655e8a9b1e37fa6e29f11db02a6b53cfb5928
Time: 2021-01-19
Author: sven@anyscale.io
File Name: rllib/agents/ppo/tests/test_ppo.py
Class Name: TestPPO
Method Name: test_ppo_free_log_std