CoolFace
Modelpublic

WilliamWen/extract_features

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes10downloads
config.json61 linesDownload Raw Back to root
1{2  "_name_or_path": "bert-base-cased",3  "architectures": [4    "BertForTokenClassification"5  ],6  "attention_probs_dropout_prob": 0.1,7  "classifier_dropout": null,8  "gradient_checkpointing": false,9  "hidden_act": "gelu",10  "hidden_dropout_prob": 0.1,11  "hidden_size": 768,12  "id2label": {13    "0": "O",14    "1": "B-MAT",15    "2": "I-MAT",16    "3": "B-SPL",17    "4": "I-SPL",18    "5": "B-DSC",19    "6": "I-DSC",20    "7": "B-PRO",21    "8": "I-PRO",22    "9": "B-APL",23    "10": "I-APL",24    "11": "B-SMT",25    "12": "I-SMT",26    "13": "B-CMT",27    "14": "I-CMT"28  },29  "initializer_range": 0.02,30  "intermediate_size": 3072,31  "label2id": {32    "B-APL": 9,33    "B-CMT": 13,34    "B-DSC": 5,35    "B-MAT": 1,36    "B-PRO": 7,37    "B-SMT": 11,38    "B-SPL": 3,39    "I-APL": 10,40    "I-CMT": 14,41    "I-DSC": 6,42    "I-MAT": 2,43    "I-PRO": 8,44    "I-SMT": 12,45    "I-SPL": 4,46    "O": 047  },48  "layer_norm_eps": 1e-12,49  "max_position_embeddings": 512,50  "model_type": "bert",51  "num_attention_heads": 12,52  "num_hidden_layers": 12,53  "pad_token_id": 0,54  "position_embedding_type": "absolute",55  "torch_dtype": "float32",56  "transformers_version": "4.28.1",57  "type_vocab_size": 2,58  "use_cache": true,59  "vocab_size": 2899660}61