We shouldn't be storing pretrained weights in the install directory of the module:
|
_PRETRAINED_WEIGHTS_PATH = pathlib.Path(__file__).parent / "_weights" |
It can potentially breakl moving between wheel and editable package installs. For instance, removing/uninstalling fvdb-reality-capture will not remove these _weights directories and leave the 'fvdb-reality-capture' directory in site-packages which will cause confusion for the user because import will pick up this (mostly) empty directory first.
We shouldn't be storing pretrained weights in the install directory of the module:
fvdb-reality-capture/fvdb_reality_capture/foundation_models/config.py
Line 11 in 230d64c
It can potentially breakl moving between wheel and editable package installs. For instance, removing/uninstalling fvdb-reality-capture will not remove these _weights directories and leave the 'fvdb-reality-capture' directory in
site-packageswhich will cause confusion for the user because import will pick up this (mostly) empty directory first.