Suggestions
haofengac opened this issue · 2 comments
haofengac commented
Hello, thanks for releasing the training script! I've got some suggestions on the code:
- It would be great if paths in the processed cityscapes.tar.gz and the experiment jsons are not absolute but relative with symbolic links.
- Python3 might be more convenient for most developers.
Again, thanks for releasing the code!
Useful resources:
arieling commented
Hi, Thank you for your suggestions!
- Yes it will be nice to have relative path with symbolic links.
- For now we would like to stay in Python2 since our checkpoints are dumps by pytorch compiled in Python2
amlankar commented
Hi @xanderchf,
We use absolute paths since our code and models (large files) live on separate file systems -- the code is mounted onto personal machines, while models are not. This is why we do not keep symlinks to the other filesystem. It's very easy to add symlinks and convert to relative paths since all code is run from the root of the project.
I agree about python3, and we will do this soon.
Thanks for the suggestions!