Siyam commited on
Commit
f9ec5d5
1 Parent(s): 67ce2d7

Upload folder using huggingface_hub

Browse files
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google-bert/bert-base-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
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": "success_measurement",
14
+ "1": "industry_experience",
15
+ "2": "ethics_in_ai",
16
+ "3": "services_offered",
17
+ "4": "testimonial",
18
+ "5": "client_support",
19
+ "6": "how_are_you",
20
+ "7": "innovation",
21
+ "8": "scalability",
22
+ "9": "partnership_opportunities",
23
+ "10": "contact_info",
24
+ "11": "data_security",
25
+ "12": "consultation_process",
26
+ "13": "competitive_advantage",
27
+ "14": "greeting",
28
+ "15": "training_options",
29
+ "16": "future_scope",
30
+ "17": "about_company",
31
+ "18": "technology_stack",
32
+ "19": "expertise",
33
+ "20": "ai_adoption",
34
+ "21": "pricing_info",
35
+ "22": "project_timeline",
36
+ "23": "collaboration",
37
+ "24": "risk_management",
38
+ "25": "farewell",
39
+ "26": "case_studies"
40
+ },
41
+ "initializer_range": 0.02,
42
+ "intermediate_size": 3072,
43
+ "label2id": {
44
+ "about_company": 17,
45
+ "ai_adoption": 20,
46
+ "case_studies": 26,
47
+ "client_support": 5,
48
+ "collaboration": 23,
49
+ "competitive_advantage": 13,
50
+ "consultation_process": 12,
51
+ "contact_info": 10,
52
+ "data_security": 11,
53
+ "ethics_in_ai": 2,
54
+ "expertise": 19,
55
+ "farewell": 25,
56
+ "future_scope": 16,
57
+ "greeting": 14,
58
+ "how_are_you": 6,
59
+ "industry_experience": 1,
60
+ "innovation": 7,
61
+ "partnership_opportunities": 9,
62
+ "pricing_info": 21,
63
+ "project_timeline": 22,
64
+ "risk_management": 24,
65
+ "scalability": 8,
66
+ "services_offered": 3,
67
+ "success_measurement": 0,
68
+ "technology_stack": 18,
69
+ "testimonial": 4,
70
+ "training_options": 15
71
+ },
72
+ "layer_norm_eps": 1e-12,
73
+ "max_position_embeddings": 512,
74
+ "model_type": "bert",
75
+ "num_attention_heads": 12,
76
+ "num_hidden_layers": 12,
77
+ "pad_token_id": 0,
78
+ "position_embedding_type": "absolute",
79
+ "problem_type": "single_label_classification",
80
+ "torch_dtype": "float32",
81
+ "transformers_version": "4.38.1",
82
+ "type_vocab_size": 2,
83
+ "use_cache": true,
84
+ "vocab_size": 30522
85
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ea4218bf6ee024822c35a4eef8a24aebcb8cfdb54fe8453c43cd8cb592c832b
3
+ size 438035548
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
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
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_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "max_length": 512,
49
+ "model_max_length": 512,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "BertTokenizer",
55
+ "unk_token": "[UNK]"
56
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:534398c4a3106ceec712ca296858bc07ba24a692c0c599752033af054287240b
3
+ size 4856
vocab.txt ADDED
The diff for this file is too large to render. See raw diff