BlueWinters

Results 4 comments of BlueWinters

synthesis dataset (I don't remember clearly).

I meet the same problem, this is due the process: [https://github.com/LikeLy-Journey/SegmenTron/blob/master/tools/train.py](url) ``` if get_rank() == 0: try: show_flops_params(self.model, args.device) except Exception as e: logging.warning('get flops and params error: {}'.format(e)) ```...

i think that the bilinear interpolation process in funtion bilinear_sampler is wrong, and a good example of this process can be found in [https://github.com/tensorflow/models/tree/master/research/transformer](url) ` # get pixel value at...

just try to modify the code in `decalib/datasets/detectors.py` ``` class FAN(object): def __init__(self): import face_alignment self.model = face_alignment.FaceAlignment(face_alignment.LandmarksType._2D, flip_input=False) def run(self, image): ''' image: 0-255, uint8, rgb, [h, w, 3]...