Totoro97/NeuS

How can I check the psnr values generated during training?

newforests opened this issue · 2 comments

How can I check the psnr values generated during training?

TensorBoard logs are stored during the training process under exp/<case_name>/<conf_name>/logs/.
Therefore you can run TensorBoard to monitor the metrics (including PSNR) during training through:

tensorboard --logdir path/to/logdir

# In my case:
tensorboard --logdir exp/NeuS-test/womask_sphere/logs

This host the TensorBoard dashboard locally, where you will be able to see the metrics.

I hope this helps.

TensorBoard 日志在训练过程中存储在exp/<case_name>/<conf_name>/logs/. 因此,您可以通过以下方式运行 TensorBoard 在训练期间监控指标(包括 PSNR):

tensorboard --logdir path/to/logdir

# In my case:
tensorboard --logdir exp/NeuS-test/womask_sphere/logs

这在本地托管 TensorBoard 仪表板,您可以在其中查看指标。

我希望这有帮助。

May I ask how to evaluate the Chamfer distance value?Looking forward to your reply. Thank you very much!