ambig_classifier

This commit is contained in:
ahmed531998 2023-04-12 20:04:42 +02:00
commit 3e0a07dfda
7 changed files with 61257 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
"_name_or_path": "distilbert-base-uncased",
"activation": "gelu",
"architectures": [
"DistilBertForSequenceClassification"
],
"attention_dropout": 0.1,
"dim": 768,
"dropout": 0.1,
"hidden_dim": 3072,
"id2label": {
"0": "clear",
"1": "somewhat_clear",
"2": "somewhat_ambiguous",
"3": "ambiguous"
},
"initializer_range": 0.02,
"label2id": {
"ambiguous": 3,
"clear": 0,
"somewhat_ambiguous": 2,
"somewhat_clear": 1
},
"max_position_embeddings": 512,
"model_type": "distilbert",
"n_heads": 12,
"n_layers": 6,
"pad_token_id": 0,
"problem_type": "single_label_classification",
"qa_dropout": 0.1,
"seq_classif_dropout": 0.2,
"sinusoidal_pos_embds": false,
"tie_weights_": true,
"torch_dtype": "float32",
"transformers_version": "4.26.1",
"vocab_size": 30522
}

Binary file not shown.

View File

@ -0,0 +1,7 @@
{
"cls_token": "[CLS]",
"mask_token": "[MASK]",
"pad_token": "[PAD]",
"sep_token": "[SEP]",
"unk_token": "[UNK]"
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
{
"cls_token": "[CLS]",
"do_lower_case": true,
"mask_token": "[MASK]",
"model_max_length": 512,
"name_or_path": "distilbert-base-uncased",
"pad_token": "[PAD]",
"sep_token": "[SEP]",
"special_tokens_map_file": null,
"strip_accents": null,
"tokenize_chinese_chars": true,
"tokenizer_class": "DistilBertTokenizer",
"unk_token": "[UNK]"
}

Binary file not shown.

30522
ambig_classifier/vocab.txt Normal file

File diff suppressed because it is too large Load Diff