Normalize Motius Pipeline.from_pretrained metadata
Browse files- README.md +8 -0
- model_index.json +23 -1
README.md
CHANGED
|
@@ -72,3 +72,11 @@ position IK, then repacked explicitly from row-major to column-major 6D.
|
|
| 72 |
| Bundle | `motius/models/vermo/bundle.py` |
|
| 73 |
| Processor | `motius/models/vermo/processor.py` |
|
| 74 |
| Motion tasks | `motius/models/vermo/task_utils/` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
| Bundle | `motius/models/vermo/bundle.py` |
|
| 73 |
| Processor | `motius/models/vermo/processor.py` |
|
| 74 |
| Motion tasks | `motius/models/vermo/task_utils/` |
|
| 75 |
+
|
| 76 |
+
## Direct Loading
|
| 77 |
+
|
| 78 |
+
```python
|
| 79 |
+
from motius import Pipeline
|
| 80 |
+
|
| 81 |
+
pipeline = Pipeline.from_pretrained("ZeyuLing/Motius-VerMo-HumanML3D")
|
| 82 |
+
```
|
model_index.json
CHANGED
|
@@ -5,5 +5,27 @@
|
|
| 5 |
"format": "motius-vermo-artifact-v1",
|
| 6 |
"bundle_class": "motius.models.vermo.VermoBundle",
|
| 7 |
"pipeline_class": "motius.pipelines.vermo.VermoPipeline",
|
| 8 |
-
"api":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
|
|
|
| 5 |
"format": "motius-vermo-artifact-v1",
|
| 6 |
"bundle_class": "motius.models.vermo.VermoBundle",
|
| 7 |
"pipeline_class": "motius.pipelines.vermo.VermoPipeline",
|
| 8 |
+
"api": {
|
| 9 |
+
"loader": "motius.Pipeline.from_pretrained",
|
| 10 |
+
"task_methods": [
|
| 11 |
+
"infer_motion_to_text"
|
| 12 |
+
]
|
| 13 |
+
},
|
| 14 |
+
"format_version": 1,
|
| 15 |
+
"tasks": [
|
| 16 |
+
"motion_to_text"
|
| 17 |
+
],
|
| 18 |
+
"required_files": [
|
| 19 |
+
"artifact_manifest.json",
|
| 20 |
+
"bundle_config.json",
|
| 21 |
+
"lm/config.json",
|
| 22 |
+
"lm/generation_config.json",
|
| 23 |
+
"lm/model.safetensors",
|
| 24 |
+
"motion_tokenizer/config.json",
|
| 25 |
+
"motion_tokenizer/diffusion_pytorch_model.safetensors",
|
| 26 |
+
"stats/smplh_universal_stats_aug.json",
|
| 27 |
+
"tokenizer/special_tokens_map.json",
|
| 28 |
+
"tokenizer/tokenizer.json",
|
| 29 |
+
"tokenizer/tokenizer_config.json"
|
| 30 |
+
]
|
| 31 |
}
|