YufeiWang777 / LRRU

Official implementation of ``LRRU: Long-short Range Recurrent Updating Networks for Depth Completion'', ICCV 2023.
75 stars 2 forks source link

Summary.py > save 's export the output #14

Closed scene-the-ella closed 1 month ago

scene-the-ella commented 4 months ago

image

Hi! Thank you for your nice work! BTW, isn't itpred = output['results'][-1].detach() instead of pred = output[self.args.output][-1].detach()? Cuz that line causes KeyError.

jisoo0-0 commented 3 months ago

In my reproduction, that was not the problem. There was a key "results" in the output dictionary.

scene-the-ella commented 3 months ago

In my reproduction, that was not the problem. There was a key "results" in the output dictionary.

Hi @jisoo0-0 ! Thank you for your appreciation of my issue in responding on behalf of the author! However, It seems that what you're saying now is exactly the same as my initial question. I'm actually arguing that output['results'][-1] is correct, not output[self.args.output][-1]. 😉

YufeiWang777 commented 1 month ago

Hi, you can change it to the key you want.