Views
No views yet
HIL-SERL paper code (https://hil-serl.github.io/) to Lerobot (https://github.com/Lerobot/lerobot).
The HF doesn't have ResNet-10 model, which could be pretty usefult for robotics tasks because of it's small size.
This model is converted from JAX to PyTorch, and the weights are preserved.1from transformers import AutoModel, AutoTokenizer
2model = AutoModel.from_pretrained("helper2424/resnet10_test_port")1
2@misc{resnet10,
3 title = "Resnet10",
4 author = "Eugene Mironov and Khalil Meftah and Adil Zouitine and Michel Aractingi and Ke Wang",
5 month = jan,
6 year = "2025",
7 address = "Online",
8 publisher = "Hugging Face",
9 url = "https://huggingface.co/helper2424/resnet10",
10}
11