Instructions to use evilfreelancer/moa-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use evilfreelancer/moa-classification with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("roberta-base") model.load_adapter("evilfreelancer/moa-classification", set_active=True) - Notebooks
- Google Colab
- Kaggle
File size: 554 Bytes
b4c94db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {
"config": {
"activation_function": "tanh",
"bias": true,
"dropout_prob": null,
"head_type": "classification",
"label2id": {
"cot": 6,
"exam": 3,
"finance": 0,
"gpt4tools": 5,
"leetcode": 2,
"medicine": 1,
"stackoverflow": 7,
"webgpt": 4
},
"layers": 2,
"num_labels": 8,
"use_pooler": false
},
"hidden_size": 768,
"model_class": "RobertaAdapterModel",
"model_name": "roberta-base",
"model_type": "roberta",
"name": "moa_classifier",
"version": "0.2.1"
} |