postagger-azb / config.json
mahsaamani's picture
Update config.json
8a3296f
raw
history blame
No virus
1.12 kB
{
"architectures": [
"BertForTokenClassification"
],
"attention_probs_dropout_prob": 0.1,
"classifier_dropout": null,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.1,
"hidden_size": 768,
"id2label": {
"0": "NOUN",
"1": "PUNC",
"2": "VERB",
"3": "PRON",
"4": "ADV",
"5": "CONJ",
"6": "DET",
"7": "NUM",
"8": "ADJ",
"9": "QUES",
"10": "POSTP",
"11": "INTERJ"
},
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"NOUN": 0,
"PUNC": 1,
"POSTP": 10,
"INTERJ": 11,
"VERB": 2,
"PRON": 3,
"ADV": 4,
"CONJ": 5,
"DET": 6,
"NUM": 7,
"ADJ": 8,
"QUES": 9
},
"layer_norm_eps": 1e-12,
"max_position_embeddings": 64,
"model_type": "bert",
"num_attention_heads": 12,
"num_hidden_layers": 12,
"pad_token_id": 0,
"position_embedding_type": "absolute",
"torch_dtype": "float32",
"transformers_version": "4.29.2",
"type_vocab_size": 2,
"use_cache": true,
"vocab_size": 10000,
"mask_token": "[MASK]",
"pad_token": "[PAD]",
"sep_token": "[SEP]",
"unk_token": "[UNK]"
}