A newer version of the Gradio SDK is available:
5.36.2
2024-11-28
Added
- Supported user-provided camera FOV. See scripts/infer.py --fov_x.
- Added inference scripts for panorama images. See scripts/infer_panorama.py.
- Related issue: #19.
Fixed
- Suppressed unnecessary numpy runtime warnings.
- Specified recommended versions of requirements.
- Related issue: #21.
Changed
- Moved
app.py
andinfer.py
to scripts/ - Improved edge removal.
2025-03-18
Added
- Training and evaluation code. See docs/train.md and docs/eval.md.
- Supported installation via pip. Thanks to @fabiencastan and @jgoueslard for commits in the #47
- Supported command-line usage when installed.
Changed
- Moved
scripts/
intomoge/
for package installation and command-line usage. - Renamed
moge.model.moge_model
tomoge.model.v1
for version management. Now you can import the model class throughfrom moge.model.v1 import MoGeModel
orfrom moge.model import import_model_class_by_version; MoGeModel = import_model_class_by_version('v1')
. - Exposed
num_tokens
parameter in MoGe model.
2025-06-10
Added
- Released MoGe-2.