karpathy / randomfun

Notebooks and various random fun

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

G[int(wi[1]), int(wi[0])] why flip dimensions?

pannous opened this issue · comments

    # draw estimated gradient as white arrow
    R = np.array([G[int(wi[1]), int(wi[0])] for wi in wp])

why not G[int(wi[0]), int(wi[1])]     (G[xi,yi]) ?

numpy arrays are accessed as array[y, x].