ullasmrnva commited on
Commit
882bc45
1 Parent(s): af54a9e
Files changed (3) hide show
  1. README.md +46 -0
  2. config.json +98 -0
  3. tf_model.h5 +3 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_keras_callback
4
+ model-index:
5
+ - name: attempt
6
+ results: []
7
+ ---
8
+
9
+ <!-- This model card has been generated automatically according to the information Keras had access to. You should
10
+ probably proofread and complete it, then remove this comment. -->
11
+
12
+ # attempt
13
+
14
+ This model was trained from scratch on an unknown dataset.
15
+ It achieves the following results on the evaluation set:
16
+
17
+
18
+ ## Model description
19
+
20
+ More information needed
21
+
22
+ ## Intended uses & limitations
23
+
24
+ More information needed
25
+
26
+ ## Training and evaluation data
27
+
28
+ More information needed
29
+
30
+ ## Training procedure
31
+
32
+ ### Training hyperparameters
33
+
34
+ The following hyperparameters were used during training:
35
+ - optimizer: None
36
+ - training_precision: float32
37
+
38
+ ### Training results
39
+
40
+
41
+
42
+ ### Framework versions
43
+
44
+ - Transformers 4.20.1
45
+ - TensorFlow 2.8.2
46
+ - Tokenizers 0.12.1
config.json ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/content/LawBerta_work",
3
+ "architectures": [
4
+ "RobertaForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "LABEL_0",
15
+ "1": "LABEL_1",
16
+ "2": "LABEL_2",
17
+ "3": "LABEL_3",
18
+ "4": "LABEL_4",
19
+ "5": "LABEL_5",
20
+ "6": "LABEL_6",
21
+ "7": "LABEL_7",
22
+ "8": "LABEL_8",
23
+ "9": "LABEL_9",
24
+ "10": "LABEL_10",
25
+ "11": "LABEL_11",
26
+ "12": "LABEL_12",
27
+ "13": "LABEL_13",
28
+ "14": "LABEL_14",
29
+ "15": "LABEL_15",
30
+ "16": "LABEL_16",
31
+ "17": "LABEL_17",
32
+ "18": "LABEL_18",
33
+ "19": "LABEL_19",
34
+ "20": "LABEL_20",
35
+ "21": "LABEL_21",
36
+ "22": "LABEL_22",
37
+ "23": "LABEL_23",
38
+ "24": "LABEL_24",
39
+ "25": "LABEL_25",
40
+ "26": "LABEL_26",
41
+ "27": "LABEL_27",
42
+ "28": "LABEL_28",
43
+ "29": "LABEL_29",
44
+ "30": "LABEL_30",
45
+ "31": "LABEL_31",
46
+ "32": "LABEL_32",
47
+ "33": "LABEL_33"
48
+ },
49
+ "initializer_range": 0.02,
50
+ "intermediate_size": 3072,
51
+ "label2id": {
52
+ "LABEL_0": 0,
53
+ "LABEL_1": 1,
54
+ "LABEL_10": 10,
55
+ "LABEL_11": 11,
56
+ "LABEL_12": 12,
57
+ "LABEL_13": 13,
58
+ "LABEL_14": 14,
59
+ "LABEL_15": 15,
60
+ "LABEL_16": 16,
61
+ "LABEL_17": 17,
62
+ "LABEL_18": 18,
63
+ "LABEL_19": 19,
64
+ "LABEL_2": 2,
65
+ "LABEL_20": 20,
66
+ "LABEL_21": 21,
67
+ "LABEL_22": 22,
68
+ "LABEL_23": 23,
69
+ "LABEL_24": 24,
70
+ "LABEL_25": 25,
71
+ "LABEL_26": 26,
72
+ "LABEL_27": 27,
73
+ "LABEL_28": 28,
74
+ "LABEL_29": 29,
75
+ "LABEL_3": 3,
76
+ "LABEL_30": 30,
77
+ "LABEL_31": 31,
78
+ "LABEL_32": 32,
79
+ "LABEL_33": 33,
80
+ "LABEL_4": 4,
81
+ "LABEL_5": 5,
82
+ "LABEL_6": 6,
83
+ "LABEL_7": 7,
84
+ "LABEL_8": 8,
85
+ "LABEL_9": 9
86
+ },
87
+ "layer_norm_eps": 1e-05,
88
+ "max_position_embeddings": 514,
89
+ "model_type": "roberta",
90
+ "num_attention_heads": 12,
91
+ "num_hidden_layers": 12,
92
+ "pad_token_id": 1,
93
+ "position_embedding_type": "absolute",
94
+ "transformers_version": "4.20.1",
95
+ "type_vocab_size": 1,
96
+ "use_cache": true,
97
+ "vocab_size": 50265
98
+ }
tf_model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a98f49f9e85412cbe6414d168923f5890f21332fcf9a994d0727e7490e7507da
3
+ size 498976640