Results 5 comments of JacksonL1

if you got "cl : Command line error D8021 : invalid numeric argument '/Wno-cpp'" error modify 47 line of build.py to extra_compile_args=['std=c99'],

@chenbolinstudent the first version of 3DDFA has [implement code](https://github.com/cleardusk/3DDFA/blob/master/main.py). I think you can refer to that code

@chenbolinstudent [face3d](https://github.com/YadiraF/face3d) this project will help you.

> Thanks for your advice, now I can achieve a convergency result. Hi, I am very interested in this work too, if convenient, could you send me your training codes...

modify 58 line of **solver.py** to self.ckptios = [CheckpointIO(ospj(args.checkpoint_dir, '100000_nets_ema.ckpt'), self.nets_ema)] and modify init function of **checkpoint.py** def __init__(self, fname_template, module_list): os.makedirs(os.path.dirname(fname_template), exist_ok=True) self.fname_template = fname_template self.module_dict = module_list It's...