84d32df24d9b88464ed851dadda9bdd74ad67c5a,tests/test_retina.py,,denormalize,#,19

Before Change


    is the size of the image.
    
    x = 0.5 * ((coords[:, 0] + 1.0) * T)
    y = 0.5 * ((coords[:, 1] + 1.0) * T)
    return torch.stack([x, y], dim=1).long()

After Change


    coordinates in the range [0, T] where T is
    the size of the image.
    
    return (0.5 * ((coords + 1.0) * T)).long()


def bounding_box(x, y, size, color="w"):
    x = int(x - (size / 2))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: kevinzakka/recurrent-visual-attention
Commit Name: 84d32df24d9b88464ed851dadda9bdd74ad67c5a
Time: 2018-01-24
Author: kevinarmandzakka@gmail.com
File Name: tests/test_retina.py
Class Name:
Method Name: denormalize


Project Name: kevinzakka/recurrent-visual-attention
Commit Name: d2b634744401fff8166fed16f47e3be9be94cd6d
Time: 2018-01-20
Author: kevinarmandzakka@gmail.com
File Name: modules.py
Class Name: glimpse_sensor
Method Name: denormalize


Project Name: ncullen93/torchsample
Commit Name: 943753c968fe7c0cbafc6e44d60f1b28b42e997b
Time: 2017-05-03
Author: ncullen.th@dartmouth.edu
File Name: torchsample/utils.py
Class Name:
Method Name: th_nearest_interp2d