GordonRen

Results 2 comments of GordonRen

The CoreML model can be generated after you reshape (N,C,H,W) to (N,C,1,H,W), but the result was terrible, at last I used 'Batch Normalization' instead of 'Instance Normalization' and it worked...

1.find 'train.lua' 2.set cmd:option('-use_instance_norm', 1) to cmd:option('-use_instance_norm', 0) 3.train Notice:the trained model uses 'Instance Normalization' which has something wrong when converting it to CoreML model, but you can trian your...