paulu / deepfeatinterp

Deep Feature Interpolation (CVPR 2017)
GNU General Public License v3.0
278 stars 50 forks source link

Clarification: size of P/Q #3

Closed black-puppydog closed 7 years ago

black-puppydog commented 7 years ago

In this part of demo1.py: https://github.com/paulu/deepfeatinterp/blob/76b72e0a3b683a8cdeb13ed35b932680dc159ed1/demo1.py#L110-L112 I guess this is some left-over debugging code? Because the next step is to select "up to K out of 1" which makes little sense to me.

paulu commented 7 years ago

It is not debugging code. make_manifolds() will create multiple pos/neg sets. In demo1, the images are processed one at a time, so we only need the first set.

black-puppydog commented 7 years ago

thanks, that helps. :)