Open zhaojc001 opened 4 years ago
Hey, right now I am running both fsanet-var-iter-688590.onnx and fsanet-1x1-iter-688590.onnx models in demo.py and averaging their result. If you only want fsanet-var-iter-688590.onnx , you can simply remove the other model and take only single model's prediction as result.
The difference between two models is related to ScoringFunction (i.e. whether to calculate variance or use 1x1 convolution layer). Both functions get different features so averaging model output gives best result.
If you want to know more about the theory, I suggest you read the original author's paper since it is explained in detail there: https://ieeexplore.ieee.org/document/8954346
Thanks very much.
Thanks your great work.I have the following questions,please help me: how to get the fsanet-var-iter-688590.onnx model in the demo.py code. what is the distinct of between fsanet-1x1-iter-688590.onnx and fsanet-var-iter-688590.onnx.