How did you calculate the normalization constants?
ultimatedigiman opened this issue · 2 comments
ultimatedigiman commented
Hi,
I found some normalization constants in the repo, such as
- normalizing the future coordinates:
- normalizing inputs:
I have a few questions about normalization, please let me know if you have any suggestions:
- Is there any script to get these constants?
- Have you tried training without any normalization? What's the result?
- How to modify the training code to non-normalization version? Just set these 2 lines below to
False
?
stepankonev commented
Hi!
Thank you for your question. First, it seems like get_normalize_data()
is outdated. It used to provide normalization during data preparation, however now it is done in dataloader. I will remove it in the following commits with the normalization option in prerender config.
As for your questions:
- No script is provided for computing these constants yet.
- Normalization seemed to provide numerical stability improvements. I did not train the network for long without normalization.
- Exactly
Hope it was helpful
ultimatedigiman commented
Thanks! Steven