├── .gitignore ├── assets └── teaser.png ├── code ├── astar.py ├── clip_utils.py ├── config │ ├── config_sample_lingo.yaml │ ├── config_train_lingo.yaml │ ├── config_train_scheduler.yaml │ ├── dataset │ │ ├── lingo.yaml │ │ └── scheduler.yaml │ ├── guidance │ │ └── pelvis.yaml │ ├── model │ │ ├── model_smplx.yaml │ │ ├── scheduler.yaml │ │ └── synhsi_body.yaml │ └── sampler │ │ └── pelvis.yaml ├── constants.py ├── datasets │ ├── __init__.py │ ├── lingo.py │ ├── scheduler.py │ ├── valid_idx_sit.npy │ └── valid_idx_stand.npy ├── models │ ├── __init__.py │ ├── joints_to_smplx.py │ ├── synhsi.py │ └── transforms.py ├── sample_lingo.py ├── train_lingo.py ├── train_scheduler.py ├── transforms.py └── utils.py ├── load_smplx_animation.py ├── readme.md ├── requirements.txt ├── results ├── inputs │ └── demo-21.pkl └── outputs │ └── output__demo-21__0.pkl └── smplx_handposes.npz /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .idea/ 3 | *.pyc 4 | .blend1 -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /code/astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/astar.py -------------------------------------------------------------------------------- /code/clip_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/clip_utils.py -------------------------------------------------------------------------------- /code/config/config_sample_lingo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/config_sample_lingo.yaml -------------------------------------------------------------------------------- /code/config/config_train_lingo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/config_train_lingo.yaml -------------------------------------------------------------------------------- /code/config/config_train_scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/config_train_scheduler.yaml -------------------------------------------------------------------------------- /code/config/dataset/lingo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/dataset/lingo.yaml -------------------------------------------------------------------------------- /code/config/dataset/scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/dataset/scheduler.yaml -------------------------------------------------------------------------------- /code/config/guidance/pelvis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/guidance/pelvis.yaml -------------------------------------------------------------------------------- /code/config/model/model_smplx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/model/model_smplx.yaml -------------------------------------------------------------------------------- /code/config/model/scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/model/scheduler.yaml -------------------------------------------------------------------------------- /code/config/model/synhsi_body.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/model/synhsi_body.yaml -------------------------------------------------------------------------------- /code/config/sampler/pelvis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/config/sampler/pelvis.yaml -------------------------------------------------------------------------------- /code/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/constants.py -------------------------------------------------------------------------------- /code/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['lingo', 'scheduler'] -------------------------------------------------------------------------------- /code/datasets/lingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/datasets/lingo.py -------------------------------------------------------------------------------- /code/datasets/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/datasets/scheduler.py -------------------------------------------------------------------------------- /code/datasets/valid_idx_sit.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/datasets/valid_idx_sit.npy -------------------------------------------------------------------------------- /code/datasets/valid_idx_stand.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/datasets/valid_idx_stand.npy -------------------------------------------------------------------------------- /code/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __all__ = ['synhsi', 'joints_to_smplx'] -------------------------------------------------------------------------------- /code/models/joints_to_smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/models/joints_to_smplx.py -------------------------------------------------------------------------------- /code/models/synhsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/models/synhsi.py -------------------------------------------------------------------------------- /code/models/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/models/transforms.py -------------------------------------------------------------------------------- /code/sample_lingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/sample_lingo.py -------------------------------------------------------------------------------- /code/train_lingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/train_lingo.py -------------------------------------------------------------------------------- /code/train_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/train_scheduler.py -------------------------------------------------------------------------------- /code/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/transforms.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/code/utils.py -------------------------------------------------------------------------------- /load_smplx_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/load_smplx_animation.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/inputs/demo-21.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/results/inputs/demo-21.pkl -------------------------------------------------------------------------------- /results/outputs/output__demo-21__0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/results/outputs/output__demo-21__0.pkl -------------------------------------------------------------------------------- /smplx_handposes.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileret/lingo-release/HEAD/smplx_handposes.npz --------------------------------------------------------------------------------