Views
No views yet
| Modality | Type | Raw input |
|---|---|---|
gsmini | vision (GelSight Mini) | uint8 image [224, 224, 3] |
9dtact | vision (9DTact) | uint8 image [224, 224, 3] |
xela | taxel array | float [T, 72] |
tac02 | taxel array | float [T, 66] |
| File | htt_4sensors_best.pth (~69 MB) |
| Contents | model_state_dict = 4 encoders + shared 9-layer trunk + 4 decoders (17.1 M params) |
| Embedding dim | 192 |
| SHA-256 | 024f4c3a067168197d0a6996bbca5c03e744ed5abd1d35a666dbf78e7ac673f0 |
checkpoints/:hf download AllenBi21/HTT htt_4sensors_best.pth --local-dir checkpoints1import numpy as np
2from htt import HTT
3
4model = HTT(modality="gsmini") # loads checkpoints/htt_4sensors_best.pth
5frame = np.random.randint(0, 256, (224, 224, 3), dtype=np.uint8) # your sensor frame
6emb = model(frame) # -> torch.Tensor [1, 192]