Views
No views yet
| file | description |
|---|---|
best_model.pt | trained weights (52 MB) |
label_classes.npy | class label array (numpy, allow_pickle=True) |
1from huggingface_hub import hf_hub_download
2import torch, numpy as np
3
4weights = hf_hub_download("westhnu/articulation-therapy-lipreading", "best_model.pt")
5labels = np.load(hf_hub_download("westhnu/articulation-therapy-lipreading", "label_classes.npy"), allow_pickle=True)realtime_lipreading_demo.py 참고.