Instructions to use WIPI/train15 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WIPI/train15 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("WIPI/train15", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 461 Bytes
787ea11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | {
"id2label": {
"0": "button",
"1": "checked checkbox",
"2": "unchecked checkbox",
"3": "checked radio button",
"4": "unchecked radio button",
"5": "checked switch",
"6": "unchecked switch"
},
"label2id": {
"button": 0,
"checked checkbox": 1,
"unchecked checkbox": 2,
"checked radio button": 3,
"unchecked radio button": 4,
"checked switch": 5,
"unchecked switch": 6
},
"model_type": "yolov10"
} |