landscape icon indicating copy to clipboard operation
landscape copied to clipboard

Minified exception occurred

Open sp0oby opened this issue 3 years ago • 0 comments

Error: Minified exception occurred

sp0oby avatar Sep 22 '22 22:09 sp0oby

That's right, it always uses the prediction. We thought that it might be interesting to switch between the two policies, but we found it doesn't really help. Maybe it is worth exploring further though!

ajzhai avatar Feb 23 '24 17:02 ajzhai

Thanks for the reply. I have one more question, I run the evaluation and find that the evaluation can stop at a certain step (< 500 steps) for some unsuccessful episodes. How do you implement it?

kellyiss avatar Feb 26 '24 10:02 kellyiss

Hmm it should not stop. Can you show the error message?

ajzhai avatar Feb 26 '24 20:02 ajzhai

1709006883142

kellyiss avatar Feb 27 '24 04:02 kellyiss

Oh that's a normal failure case, it will happen if there is a false positive detection and the agent calls "stop" as it thinks it reached the target.

ajzhai avatar Feb 27 '24 07:02 ajzhai

Yeah, I see.
And for the prediction model, seems the map size for training is 960 * 960, but during inference, the map size is 720*720. Am I right? Moreover, I find that only the target prediction inside the local map is used for update the global goal. Is it reasonable to train the prediction model only with the local maps? Thanks for your patience.

kellyiss avatar Feb 27 '24 07:02 kellyiss

Currently it is set that way, but maybe that is actually a mistake -- if you try 960 during inference, let me know what happens!

It is better to predict using global map than only using local map. See the ablation study in our paper for comparison

ajzhai avatar Feb 28 '24 18:02 ajzhai

I thought the performance might not be significantly impacted. But actually, a 1% decrease in success rate on the validation set when using the map size 960, which is perplexing to me.

kellyiss avatar Mar 17 '24 14:03 kellyiss

I believe only very few episodes need the agent to go outside of the 720 size map, so there is not much benefit to predicting out there. And then the new predictions causes some slightly different behavior sometimes which leads to 1% decrease in success (not really significant).

ajzhai avatar Mar 17 '24 17:03 ajzhai