Ketki0203 commited on
Commit
ec22ee0
1 Parent(s): 1fec7f9

Training in progress epoch 0

Browse files
Files changed (6) hide show
  1. README.md +3 -5
  2. config.json +8 -3
  3. tf_model.h5 +2 -2
  4. tokenizer.json +0 -0
  5. tokenizer_config.json +7 -10
  6. vocab.txt +0 -0
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  license: apache-2.0
3
- base_model: google/muril-base-cased
4
  tags:
5
  - generated_from_keras_callback
6
  model-index:
@@ -13,11 +13,11 @@ probably proofread and complete it, then remove this comment. -->
13
 
14
  # Ketki0203/punctuation-predict
15
 
16
- This model is a fine-tuned version of [google/muril-base-cased](https://huggingface.co/google/muril-base-cased) on an unknown dataset.
17
  It achieves the following results on the evaluation set:
18
  - Train Loss: nan
19
  - Validation Loss: nan
20
- - Epoch: 2
21
 
22
  ## Model description
23
 
@@ -44,8 +44,6 @@ The following hyperparameters were used during training:
44
  | Train Loss | Validation Loss | Epoch |
45
  |:----------:|:---------------:|:-----:|
46
  | nan | nan | 0 |
47
- | nan | nan | 1 |
48
- | nan | nan | 2 |
49
 
50
 
51
  ### Framework versions
 
1
  ---
2
  license: apache-2.0
3
+ base_model: bert-base-multilingual-cased
4
  tags:
5
  - generated_from_keras_callback
6
  model-index:
 
13
 
14
  # Ketki0203/punctuation-predict
15
 
16
+ This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on an unknown dataset.
17
  It achieves the following results on the evaluation set:
18
  - Train Loss: nan
19
  - Validation Loss: nan
20
+ - Epoch: 0
21
 
22
  ## Model description
23
 
 
44
  | Train Loss | Validation Loss | Epoch |
45
  |:----------:|:---------------:|:-----:|
46
  | nan | nan | 0 |
 
 
47
 
48
 
49
  ### Framework versions
config.json CHANGED
@@ -1,11 +1,11 @@
1
  {
2
- "_name_or_path": "google/muril-base-cased",
3
  "architectures": [
4
  "BertForTokenClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
7
  "classifier_dropout": null,
8
- "embedding_size": 768,
9
  "hidden_act": "gelu",
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 768,
@@ -29,9 +29,14 @@
29
  "num_attention_heads": 12,
30
  "num_hidden_layers": 12,
31
  "pad_token_id": 0,
 
 
 
 
 
32
  "position_embedding_type": "absolute",
33
  "transformers_version": "4.40.0",
34
  "type_vocab_size": 2,
35
  "use_cache": true,
36
- "vocab_size": 197285
37
  }
 
1
  {
2
+ "_name_or_path": "bert-base-multilingual-cased",
3
  "architectures": [
4
  "BertForTokenClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
7
  "classifier_dropout": null,
8
+ "directionality": "bidi",
9
  "hidden_act": "gelu",
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 768,
 
29
  "num_attention_heads": 12,
30
  "num_hidden_layers": 12,
31
  "pad_token_id": 0,
32
+ "pooler_fc_size": 768,
33
+ "pooler_num_attention_heads": 12,
34
+ "pooler_num_fc_layers": 3,
35
+ "pooler_size_per_head": 128,
36
+ "pooler_type": "first_token_transform",
37
  "position_embedding_type": "absolute",
38
  "transformers_version": "4.40.0",
39
  "type_vocab_size": 2,
40
  "use_cache": true,
41
+ "vocab_size": 119547
42
  }
tf_model.h5 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d6cbb86a33cf2bf93ab93c020c670e7681fa0ad595242d59cf3fd3b23a8e250e
3
- size 948148184
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8620fa2e9231b6e420eb26cc8fde32261a2b842949c5da43140c906ba50252d
3
+ size 709349336
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -16,24 +16,24 @@
16
  "single_word": false,
17
  "special": true
18
  },
19
- "103": {
20
- "content": "[MASK]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
- "104": {
28
- "content": "[CLS]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "105": {
36
- "content": "[SEP]",
37
  "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
@@ -43,15 +43,12 @@
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
- "do_basic_tokenize": true,
47
  "do_lower_case": false,
48
- "lowercase": false,
49
  "mask_token": "[MASK]",
50
  "model_max_length": 512,
51
- "never_split": null,
52
  "pad_token": "[PAD]",
53
  "sep_token": "[SEP]",
54
- "strip_accents": false,
55
  "tokenize_chinese_chars": true,
56
  "tokenizer_class": "BertTokenizer",
57
  "unk_token": "[UNK]"
 
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,
 
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
 
46
  "do_lower_case": false,
 
47
  "mask_token": "[MASK]",
48
  "model_max_length": 512,
 
49
  "pad_token": "[PAD]",
50
  "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
  "tokenize_chinese_chars": true,
53
  "tokenizer_class": "BertTokenizer",
54
  "unk_token": "[UNK]"
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff