AngeloTetro commited on
Commit
a5a67a3
·
verified ·
1 Parent(s): 77a2957

Upload 6 files

Browse files
bert_italian_category_webapp_model/config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "Apprezzamento e Gratitudine",
12
+ "1": "Battute Leggere e Scherzose",
13
+ "2": "Condivisione di Hobby/Interessi",
14
+ "3": "Controllore e Isolata",
15
+ "4": "Dominante e Schiavo emotivo",
16
+ "5": "Geloso-Ossessivo e Sottomessa",
17
+ "6": "Manipolatore e Dipendente emotiva",
18
+ "7": "Narcisista e Succube",
19
+ "8": "Perfezionista Critico e Insicura Cronica",
20
+ "9": "Persona violenta e Succube",
21
+ "10": "Pianificazione Eventi Futuri",
22
+ "11": "Psicopatico e Adulatrice",
23
+ "12": "Risoluzione Costruttiva dei Problemi",
24
+ "13": "Risoluzione dei Conflitti",
25
+ "14": "Sadico-Crudele e Masochista",
26
+ "15": "Supporto Reciproco",
27
+ "16": "Vittimista e Croccerossina",
28
+ "17": "Vulnerabilit\u00e0 Emotiva e Accettazione"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "intermediate_size": 3072,
32
+ "label2id": {
33
+ "Apprezzamento e Gratitudine": 0,
34
+ "Battute Leggere e Scherzose": 1,
35
+ "Condivisione di Hobby/Interessi": 2,
36
+ "Controllore e Isolata": 3,
37
+ "Dominante e Schiavo emotivo": 4,
38
+ "Geloso-Ossessivo e Sottomessa": 5,
39
+ "Manipolatore e Dipendente emotiva": 6,
40
+ "Narcisista e Succube": 7,
41
+ "Perfezionista Critico e Insicura Cronica": 8,
42
+ "Persona violenta e Succube": 9,
43
+ "Pianificazione Eventi Futuri": 10,
44
+ "Psicopatico e Adulatrice": 11,
45
+ "Risoluzione Costruttiva dei Problemi": 12,
46
+ "Risoluzione dei Conflitti": 13,
47
+ "Sadico-Crudele e Masochista": 14,
48
+ "Supporto Reciproco": 15,
49
+ "Vittimista e Croccerossina": 16,
50
+ "Vulnerabilit\u00e0 Emotiva e Accettazione": 17
51
+ },
52
+ "layer_norm_eps": 1e-12,
53
+ "max_position_embeddings": 512,
54
+ "model_type": "bert",
55
+ "num_attention_heads": 12,
56
+ "num_hidden_layers": 12,
57
+ "pad_token_id": 0,
58
+ "position_embedding_type": "absolute",
59
+ "problem_type": "single_label_classification",
60
+ "torch_dtype": "float32",
61
+ "transformers_version": "4.52.4",
62
+ "type_vocab_size": 2,
63
+ "use_cache": true,
64
+ "vocab_size": 31102
65
+ }
bert_italian_category_webapp_model/label_encoder.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a9d4f956685858daf63c1e7ae0e3e895aa3958ee7df389ca64482e4e8a1c6e3
3
+ size 1028
bert_italian_category_webapp_model/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aaa08248e9e17caddd29b0ee88bf795a7dc5d5e02d1578e630f4644dda7592c6
3
+ size 439789624
bert_italian_category_webapp_model/special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
bert_italian_category_webapp_model/tokenizer_config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "101": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "102": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "103": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "104": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "extra_special_tokens": {},
49
+ "mask_token": "[MASK]",
50
+ "max_len": 512,
51
+ "model_max_length": 512,
52
+ "never_split": null,
53
+ "pad_token": "[PAD]",
54
+ "sep_token": "[SEP]",
55
+ "strip_accents": null,
56
+ "tokenize_chinese_chars": true,
57
+ "tokenizer_class": "BertTokenizer",
58
+ "unk_token": "[UNK]"
59
+ }
bert_italian_category_webapp_model/vocab.txt ADDED
The diff for this file is too large to render. See raw diff