Marcel Bühler

Results 6 comments of Marcel Bühler

If you work on a Linux / Apple operating system, you have to change the "\" to "/" and ";" to ":". Furthemore, the unix paths are case sensitive, so...

In model.CycleGAN#optimize you can see that the training stops after a fixed number of steps (100K steps). Of course, you can modify this number. You also might have to adjust...

The 4th dimension refers to the batch size, yielding the following 4 dimensions: (batch_size, height, width, channels) In the standard implementation, the batch size is 1.

Yes, it is possible to use any 3D face model, as long as it has a UV parameterization. Codewise, you will have to update the UV rendering in `varitex/data/uv_factory.py`.

The models.SubfieldBase class was removed (in Django 1.8 I think). You might be able to solve this by upgrading to a newer Django version.