You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @Arthur151 , I am trying to understand BEV in detail and make various attempts.
So, I succeeded in understanding the great ideas and implementation of Mixed_dataset.
I also understood the loss function, but I learned that 'outputs' delivered for training in train.py are not 'outputs' of BEV Module.
I thought the values of outputs were 'params_pred', 'cam_czyx', 'center_map', .... but I was able to guess that it is actually the output of result_parser .
deftrain_step(self, meta_data):
...
# NOTE I think outputs are BEV module's output, but it is not...# 'params_pred', 'cam_czyx', 'center_map', 'center_map_3d' .....ifnotself.model_return_loss:
outputs.update(self._calc_loss(outputs))
loss, outputs=self.merge_losses(outputs(outputs, self.train_cfg['new_training'])
...
I have a question here :(
Can you tell what functions the output of BEV goes through in the process of being passed to the code below?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Hi @Arthur151 , I am trying to understand BEV in detail and make various attempts.
So, I succeeded in understanding the great ideas and implementation of Mixed_dataset.
I also understood the loss function, but I learned that 'outputs' delivered for training in train.py are not 'outputs' of BEV Module.
I thought the values of outputs were 'params_pred', 'cam_czyx', 'center_map', .... but I was able to guess that it is actually the output of result_parser .
I have a question here :(
Can you tell what functions the output of BEV goes through in the process of being passed to the code below?
(ex)
Sorry for trivial questions T _ T
I really like BEV and want to use this! Thus, I have a lot of questions haha...
All reactions