MoGe-2 / CHANGELOG.md
Ruicheng's picture
Initial commit for HF
201ab98

A newer version of the Gradio SDK is available: 5.36.2

Upgrade

2024-11-28

Added

Fixed

  • Suppressed unnecessary numpy runtime warnings.
  • Specified recommended versions of requirements.
    • Related issue: #21.

Changed

  • Moved app.py and infer.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/ into moge/ for package installation and command-line usage.
  • Renamed moge.model.moge_model to moge.model.v1 for version management. Now you can import the model class through from moge.model.v1 import MoGeModel or from 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.