CoolFace
Modelpublic

autoevaluate/entity-extraction-not-evaluated

sourceHugging Faceapache-2.0updated 4y agoView on Hugging Face
0likes20downloads
config.json47 linesDownload Raw Back to root
1{2  "_name_or_path": "distilbert-base-uncased",3  "activation": "gelu",4  "architectures": [5    "DistilBertForTokenClassification"6  ],7  "attention_dropout": 0.1,8  "dim": 768,9  "dropout": 0.1,10  "hidden_dim": 3072,11  "id2label": {12    "0": "O",13    "1": "B-PER",14    "2": "I-PER",15    "3": "B-ORG",16    "4": "I-ORG",17    "5": "B-LOC",18    "6": "I-LOC",19    "7": "B-MISC",20    "8": "I-MISC"21  },22  "initializer_range": 0.02,23  "label2id": {24    "B-LOC": 5,25    "B-MISC": 7,26    "B-ORG": 3,27    "B-PER": 1,28    "I-LOC": 6,29    "I-MISC": 8,30    "I-ORG": 4,31    "I-PER": 2,32    "O": 033  },34  "max_position_embeddings": 512,35  "model_type": "distilbert",36  "n_heads": 12,37  "n_layers": 6,38  "pad_token_id": 0,39  "qa_dropout": 0.1,40  "seq_classif_dropout": 0.2,41  "sinusoidal_pos_embds": false,42  "tie_weights_": true,43  "torch_dtype": "float32",44  "transformers_version": "4.19.2",45  "vocab_size": 3052246}47