Closed yt605155624 closed 6 years ago
Thanks for the questions. Quick answers for now: 1) Yes, but it doesn't mean average pooling since the R,G,B values are not normalized. A brief discussion is in the beginning of section 4.1; I will add some clarification. 2) There is a script for this and I will post it tonight.
Thanks for you reply,I have tried your taining code and got some surprising results by just using way2! Why didn't you use way1,Cause I think this method may get a better result? Waiting for your code~! ╭(●`∀´●)╯╰(●’◡’●)╮
Actually, either way is confidence-weighted. You can disable it and use average pooling by setting WEIGHTED_POOLING=False
in the config.
Hi, I think the answers are updated in FAQs. Could you take a look?
Hello , I have checked your combine.py ,and find that it should be models = sys.argv[1:] in combine.py,or we will miss the final model
I have checked your paper again and find what you said in 4.1,sorry for ignoring in the first time and thank you for your patience~
Thanks! the issue in combine.py is fixed now. (I used to use the last parameter to specify the dataset, now it is no longer necessary.) Let me know if you have more questions!
I have tried the training code using way1 without changing the config.py which iter 6000,and find that the result was very bad as 188 images tested. Results: 25: 1.087, med: 2.480 tri: 2.620 avg: 3.113 75: 6.232 95: 7.546 Test time: 6.77586102486 per image: 0.0360418076211 compared with way2: 188 images tested. Results: 25: 0.367, med: 1.077 tri: 1.231 avg: 1.583 75: 3.638 95: 4.386 Test time: 6.36561894417 per image: 0.0338596701622 So I want to know if way1 needs more times of iters ,did you remember approximately how may iters it need ?
Interesting... I haven't used way 1 for a long time and there may be some bugs in the code given the error difference. When I switched to way2, the overall error on the color checker dataset is basically the same. Can you try to visualize the confidence values of way1 to see if there is reasonable?
I've got too many things to do this week and let me take a closer look this weekend.
the number of iterations needed by two ways should be the same.
In your code fcn.py,you said that if not SEPERATE_CONFIDENCE ,you will use way 2 confidence-weighted pooling