nikjetchev

Results 6 issues of nikjetchev

Looking at https://github.com/Lasagne/Lasagne/blob/master/lasagne/layers/special.py function _get_transformed_points_tps distances = T.switch(T.isnan(log_r_2), r_2 * log_r_2, 0.) This is a bug -- should be actually T.switch(T.isnan(r_2 * log_r_2), 0., r_2 * log_r_2) because this is...

Dear Pose Transfer developers I am writing currently a paper comparing several recent pose morphing papers. Can you please share with me your Deep Fashion test set result images? Maybe...

Dear all I am trying to use the harmonization example. I specified images as required. However, I get an error in SinGAN_generate(), the shapes do not match on the code...

Hi I tried to texture the STAR model using the same [code](https://colab.research.google.com/github/facebookresearch/pytorch3d/blob/stable/docs/tutorials/render_densepose.ipynb#scrollTo=1sIaZThzaeUd) as for SMPL - thought that with the same number 6890 of vertices it is going to work....

Hi, after playing with your code and getting very good results with it as it is, I am now looking to try other architectures and modify it. I want to...

I am training on my custom dataset, which works really good with the default 128 pixels resolution. I tried setting imsize=256, and using hinge loss. The generated images are always...