CoolFace
Modelpublic

Kadaroum/ToxicityDetection

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes7downloads
config.json44 linesDownload Raw Back to root
1{2  "architectures": [3    "RobertaForSequenceClassification"4  ],5  "attention_probs_dropout_prob": 0.1,6  "bos_token_id": 0,7  "classifier_dropout": null,8  "dtype": "float32",9  "eos_token_id": 2,10  "hidden_act": "gelu",11  "hidden_dropout_prob": 0.1,12  "hidden_size": 768,13  14  "id2label": {15    "0": "toxic",16    "1": "severe_toxic",17    "2": "obscene",18    "3": "threat",19    "4": "insult",20    "5": "identity_hate"21  },22  "label2id": {23    "toxic": 0,24    "severe_toxic": 1,25    "obscene": 2,26    "threat": 3,27    "insult": 4,28    "identity_hate": 529  },30  31  "layer_norm_eps": 1e-05,32  "max_position_embeddings": 514,33  "model_type": "roberta",34  "num_attention_heads": 12,35  "num_hidden_layers": 12,36  "pad_token_id": 1,37  "position_embedding_type": "absolute",38  "problem_type": "multi_label_classification",39  "transformers_version": "4.57.5",40  "type_vocab_size": 1,41  "use_cache": true,42  "vocab_size": 5026543}44