Phi-C

Results 3 comments of Phi-C

> `trainer` is a high-level container. We need to specify the leaf models in `trainer`. > > ```python > if num_gpu>1: > trainer.teacher_model = torch.nn.DataParallel(trainer.teacher_model, gpu_ids) > trainer.id_a = torch.nn.DataParallel(trainer.id_a,...

@layumi Thank you, it's really helpful. But any reference to modify the code?

@AlonZolfi The pseudo code is as follows ``` def get_mask_texture(src_image_path, seg_image_path): seg_image = imread(seg_image_path) src_image = imread(src_image_path) # use src_image to get pos and vertices with the help of PRN...