Instructions to use ZibinDong/ActionCodec-Base-RVQft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ZibinDong/ActionCodec-Base-RVQft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="ZibinDong/ActionCodec-Base-RVQft", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ZibinDong/ActionCodec-Base-RVQft", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +4 -0
config.json
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
"architectures": [
|
| 3 |
"ActionCodec"
|
| 4 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
"decoder_add_causal_mask": false,
|
| 6 |
"decoder_add_self_attn": false,
|
| 7 |
"decoder_cls_size": 1,
|
|
|
|
| 2 |
"architectures": [
|
| 3 |
"ActionCodec"
|
| 4 |
],
|
| 5 |
+
"auto_map": {
|
| 6 |
+
"AutoConfig": "configuration_actioncodec.ActionCodecConfig",
|
| 7 |
+
"AutoModel": "modeling_actioncodec.ActionCodec"
|
| 8 |
+
},
|
| 9 |
"decoder_add_causal_mask": false,
|
| 10 |
"decoder_add_self_attn": false,
|
| 11 |
"decoder_cls_size": 1,
|