Closed CrystalSixone closed 2 years ago
Hi, I never met this problem. The format of the output predictions does not match the required submit format. Did you convert the format correctly?
Thanks for your kindly reply, but I did not change any codes about submitting format.
I mean the required format to submit in the leaderboard is different. You need to convert the format.
I see! I forgot to convert the format. The problem has been solved by adding the following codes in the end of function of rollout
in agent.py
:
if self.args.submit:
for i,item in enumerate(traj):
new_paths = []
for node in item['path']:
for each_sub_node in node:
new_paths.append([each_sub_node])
traj[i]['path'] = new_paths
Thanks again.
Hi, @cshizhe,
Thanks for your awesome work. I am trying to do some experiments based on your network and when I submitted the results (both on the validation splits and the test split) to the leaderboard, the status showed failed and the Stdout file is as follows:
I used the test code in
map_nav_src/scrips/run_r2r.sh
and could you spend some time checking on what causes this problem?Best wishes :)