KalaiselvanD commited on
Commit
2941a5c
1 Parent(s): 8281518

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,35 +1,44 @@
1
  {
2
- "_name_or_path": "distilbert/distilbert-base-uncased",
3
- "activation": "gelu",
4
  "architectures": [
5
- "DistilBertForSequenceClassification"
6
  ],
7
- "attention_dropout": 0.1,
8
- "dim": 768,
9
- "dropout": 0.1,
10
- "hidden_dim": 3072,
 
 
 
 
 
 
11
  "id2label": {
12
  "0": "low",
13
  "1": "medium",
14
  "2": "high"
15
  },
16
  "initializer_range": 0.02,
 
 
17
  "label2id": {
18
  "high": 2,
19
  "low": 0,
20
  "medium": 1
21
  },
 
22
  "max_position_embeddings": 512,
23
- "model_type": "distilbert",
24
- "n_heads": 12,
25
- "n_layers": 6,
 
 
 
26
  "pad_token_id": 0,
 
27
  "problem_type": "single_label_classification",
28
- "qa_dropout": 0.1,
29
- "seq_classif_dropout": 0.2,
30
- "sinusoidal_pos_embds": false,
31
- "tie_weights_": true,
32
  "torch_dtype": "float32",
33
  "transformers_version": "4.38.2",
34
- "vocab_size": 30522
 
35
  }
 
1
  {
2
+ "_name_or_path": "albert/albert-base-v2",
 
3
  "architectures": [
4
+ "AlbertForSequenceClassification"
5
  ],
6
+ "attention_probs_dropout_prob": 0,
7
+ "bos_token_id": 2,
8
+ "classifier_dropout_prob": 0.1,
9
+ "down_scale_factor": 1,
10
+ "embedding_size": 128,
11
+ "eos_token_id": 3,
12
+ "gap_size": 0,
13
+ "hidden_act": "gelu_new",
14
+ "hidden_dropout_prob": 0,
15
+ "hidden_size": 768,
16
  "id2label": {
17
  "0": "low",
18
  "1": "medium",
19
  "2": "high"
20
  },
21
  "initializer_range": 0.02,
22
+ "inner_group_num": 1,
23
+ "intermediate_size": 3072,
24
  "label2id": {
25
  "high": 2,
26
  "low": 0,
27
  "medium": 1
28
  },
29
+ "layer_norm_eps": 1e-12,
30
  "max_position_embeddings": 512,
31
+ "model_type": "albert",
32
+ "net_structure_type": 0,
33
+ "num_attention_heads": 12,
34
+ "num_hidden_groups": 1,
35
+ "num_hidden_layers": 12,
36
+ "num_memory_blocks": 0,
37
  "pad_token_id": 0,
38
+ "position_embedding_type": "absolute",
39
  "problem_type": "single_label_classification",
 
 
 
 
40
  "torch_dtype": "float32",
41
  "transformers_version": "4.38.2",
42
+ "type_vocab_size": 2,
43
+ "vocab_size": 30000
44
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fe297c548ac37ce1f179cecc9ff5499a78e966eec941f832a93dde85bd9ac420
3
- size 267835644
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fd0d6889b494b14afcfe4e83d97bdfe78ac86e9cab588f391ba0ad08ae1995f
3
+ size 46746988
runs/Apr19_12-46-24_aae50d3f34c4/events.out.tfevents.1713530785.aae50d3f34c4.159.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:404024bdbc5ea51a59cefaa6892e0a65b8ba5d10547d365e0d76344a3235b2ae
3
+ size 5193
special_tokens_map.json CHANGED
@@ -1,7 +1,15 @@
1
  {
 
2
  "cls_token": "[CLS]",
3
- "mask_token": "[MASK]",
4
- "pad_token": "[PAD]",
 
 
 
 
 
 
 
5
  "sep_token": "[SEP]",
6
- "unk_token": "[UNK]"
7
  }
 
1
  {
2
+ "bos_token": "[CLS]",
3
  "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
+ "mask_token": {
6
+ "content": "[MASK]",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
  "sep_token": "[SEP]",
14
+ "unk_token": "<unk>"
15
  }
spiece.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fefb02b667a6c5c2fe27602d28e5fb3428f66ab89c7d6f388e7c8d44a02d0336
3
+ size 760289
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,22 +1,22 @@
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,
@@ -24,7 +24,7 @@
24
  "single_word": false,
25
  "special": true
26
  },
27
- "102": {
28
  "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
@@ -32,24 +32,26 @@
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
- "model_max_length": 1000000000000000019884624838656,
49
- "pad_token": "[PAD]",
 
50
  "sep_token": "[SEP]",
51
- "strip_accents": null,
52
- "tokenize_chinese_chars": true,
53
- "tokenizer_class": "DistilBertTokenizer",
54
- "unk_token": "[UNK]"
55
  }
 
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
+ "1": {
12
+ "content": "<unk>",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
+ "2": {
20
  "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
 
24
  "single_word": false,
25
  "special": true
26
  },
27
+ "3": {
28
  "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
 
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "4": {
36
  "content": "[MASK]",
37
+ "lstrip": true,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
44
+ "bos_token": "[CLS]",
45
  "clean_up_tokenization_spaces": true,
46
  "cls_token": "[CLS]",
47
  "do_lower_case": true,
48
+ "eos_token": "[SEP]",
49
+ "keep_accents": false,
50
  "mask_token": "[MASK]",
51
+ "model_max_length": 512,
52
+ "pad_token": "<pad>",
53
+ "remove_space": true,
54
  "sep_token": "[SEP]",
55
+ "tokenizer_class": "AlbertTokenizer",
56
+ "unk_token": "<unk>"
 
 
57
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b4fdcf0f4e18949cdb9e4a13d67e933225e00d1a8d86a5594492e4c059123e73
3
  size 4920
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2f3a3266974084d33427a7d94dd10910269de8c5cbfbd00f3e59bd631e2ddb2
3
  size 4920