8cab14aa67b78402bb395546ca66e2b927cac222,fid_score.py,,get_activations,#,63

Before Change


    
    model.eval()

    d0 = images.shape[0]
    if batch_size > d0:
        print(("Warning: batch size is bigger than the data size. "
               "Setting batch size to data size"))
        batch_size = d0

After Change


        end = start + batch_size
        
        // real batch of images here
        images = np.array([imread(str(fn)).astype(np.float32) for fn in files[start:end]])
        images = images.transpose((0, 3, 1, 2))
        images /= 255
        
        batch = torch.from_numpy(images).type(torch.FloatTensor)
        batch = Variable(batch, volatile=True)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: mseitzer/pytorch-fid
Commit Name: 8cab14aa67b78402bb395546ca66e2b927cac222
Time: 2019-01-31
Author: maya6282@gmail.com
File Name: fid_score.py
Class Name:
Method Name: get_activations


Project Name: scikit-learn-contrib/DESlib
Commit Name: c26ae10c31c3289c7df2f192b44399cae4aa6416
Time: 2018-04-03
Author: luiz.gh@gmail.com
File Name: deslib/tests/des/test_meta_des.py
Class Name:
Method Name: test_estimate_competence


Project Name: scikit-learn-contrib/DESlib
Commit Name: c26ae10c31c3289c7df2f192b44399cae4aa6416
Time: 2018-04-03
Author: luiz.gh@gmail.com
File Name: deslib/tests/des/test_meta_des.py
Class Name:
Method Name: test_estimate_competence_batch