The lion part of the reformat finally breaks backwards compatibility to introduce the new config parser and clear separation to apps.
Be aware of what got deprecated:
main.py and main_interactive.py
Everything under configs.yaml is no longer relevant, apps have their own configs
Similarly, configs that existed under examples/funny_nerf were deprecated
The templates folder
config_parser.py heavily revised.
app/nerf, app/nglod - each app now has it's own argument parsing, additional requirements.txt (if needed), README, and so forth. Args aim to be as close as possible to what we had before this change. Some args were removed, and defaults may have been re-set to different values (usually, if this is done it's due to recent commits which updated the configs, or due to a parameter deemed unused).
examples/ folder - both the SIGG demo and SPC browser are now more concise, as they should be :)
additional changes: tracers no longer taking kwargs (on purpose), cuda_guard fixed by Clement to avoid interference with the gui libraries own argparse, the SDFDataset having a different signature
The lion part of the reformat finally breaks backwards compatibility to introduce the new config parser and clear separation to apps.
main.py
andmain_interactive.py
configs.yaml
is no longer relevant, apps have their own configsexamples/funny_nerf
were deprecatedconfig_parser.py
heavily revised.app/nerf
,app/nglod
- each app now has it's own argument parsing, additionalrequirements.txt
(if needed), README, and so forth. Args aim to be as close as possible to what we had before this change. Some args were removed, and defaults may have been re-set to different values (usually, if this is done it's due to recent commits which updated the configs, or due to a parameter deemed unused).examples/
folder - both the SIGG demo and SPC browser are now more concise, as they should be :)cuda_guard
fixed by Clement to avoid interference with the gui libraries own argparse, the SDFDataset having a different signatureAuthors: Clement Fuji-Tsang, Or Perel