File size: 390 Bytes
7e120dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import torch
import numpy as np
from pathlib import Path
import sys
# Add Genmo to Path
repo_root = str(Path(__file__).resolve().parents[0])
if repo_root not in sys.path:
sys.path.insert(0, repo_root)
# Verify Kabsch in metric evaluation
from third_party.GVHMR.hmr4d.utils.geo_transform import apply_T_on_points
def dump_train_script():
pass
if __name__ == "__main__":
pass
|