CoolFace
Modelpublic

SteveTran/ob_ner_model

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes941downloads
config.json64 linesDownload Raw Back to root
1{2  "architectures": [3    "ElectraForTokenClassification"4  ],5  "attention_probs_dropout_prob": 0.1,6  "classifier_dropout": null,7  "embedding_size": 768,8  "hidden_act": "gelu",9  "hidden_dropout_prob": 0.1,10  "hidden_size": 768,11  "id2label": {12    "0": "O",13    "1": "B-brand",14    "2": "I-brand",15    "3": "B-color",16    "4": "I-color",17    "5": "B-gender",18    "6": "I-gender",19    "7": "B-material",20    "8": "I-material",21    "9": "B-size",22    "10": "I-size",23    "11": "B-style",24    "12": "I-style",25    "13": "B-type",26    "14": "I-type"27  },28  "initializer_range": 0.02,29  "intermediate_size": 3072,30  "label2id": {31    "B-brand": 1,32    "B-color": 3,33    "B-gender": 5,34    "B-material": 7,35    "B-size": 9,36    "B-style": 11,37    "B-type": 13,38    "I-brand": 2,39    "I-color": 4,40    "I-gender": 6,41    "I-material": 8,42    "I-size": 10,43    "I-style": 12,44    "I-type": 14,45    "O": 046  },47  "layer_norm_eps": 1e-12,48  "max_position_embeddings": 512,49  "model_type": "electra",50  "num_attention_heads": 12,51  "num_hidden_layers": 12,52  "pad_token_id": 0,53  "position_embedding_type": "absolute",54  "summary_activation": "gelu",55  "summary_last_dropout": 0.1,56  "summary_type": "first",57  "summary_use_proj": true,58  "torch_dtype": "float32",59  "transformers_version": "4.52.4",60  "type_vocab_size": 2,61  "use_cache": true,62  "vocab_size": 6200063}64