Open zachluo opened 7 years ago
I'm not sure I understand your question. Can you point to where in the paper and where in my code you are referring to?
@dyelax hi, I mean in the paper, there is an equation (2) , which means Generator Network at size k is to learn the difference and it should add the previous size k/2 output. In your code, it should add some codes like this before g_model.py:271 : if last_gen_frames is not None: preds += last_gen_frames return preds, scale_gts Am i right ?
hi,dyelax I found that in the original paper, each scale network is to learn Yk - uk(Yk-1). But in your implementation, it is to learn Yk. Did I misunderstand ?