movieHunt4-ner / config.json
AbidHasan95's picture
updated config.json
65203f8
raw
history blame contribute delete
No virus
1.12 kB
{
"_name_or_path": "distilbert-base-uncased",
"activation": "gelu",
"architectures": [
"DistilBertForTokenClassification"
],
"attention_dropout": 0.1,
"dim": 768,
"dropout": 0.1,
"hidden_dim": 3072,
"id2label": {
"0": "other",
"1": "language",
"2": "genre",
"3": "year_exact",
"4": "year_range",
"5": "year_prior",
"6": "year_after",
"7": "rating_exact",
"8": "rating_range",
"9": "rating_below",
"10": "rating_above",
"11": "movie"
},
"initializer_range": 0.02,
"label2id": {
"other": 0,
"language": 1,
"rating_above": 10,
"movie": 11,
"genre": 2,
"year_exact": 3,
"year_range": 4,
"year_prior": 5,
"year_after": 6,
"rating_exact": 7,
"rating_range": 8,
"rating_below": 9
},
"max_position_embeddings": 512,
"model_type": "distilbert",
"n_heads": 12,
"n_layers": 6,
"pad_token_id": 0,
"qa_dropout": 0.1,
"seq_classif_dropout": 0.2,
"sinusoidal_pos_embds": false,
"tie_weights_": true,
"torch_dtype": "float32",
"transformers_version": "4.21.0",
"vocab_size": 30522
}