tiwanyan commited on
Commit
9f70ad4
1 Parent(s): 77c7d70

Training in progress epoch 0

Browse files
Files changed (7) hide show
  1. README.md +53 -0
  2. config.json +55 -0
  3. special_tokens_map.json +7 -0
  4. tf_model.h5 +3 -0
  5. tokenizer.json +0 -0
  6. tokenizer_config.json +13 -0
  7. vocab.txt +0 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_keras_callback
5
+ model-index:
6
+ - name: tiwanyan/my_model_v1
7
+ results: []
8
+ ---
9
+
10
+ <!-- This model card has been generated automatically according to the information Keras had access to. You should
11
+ probably proofread and complete it, then remove this comment. -->
12
+
13
+ # tiwanyan/my_model_v1
14
+
15
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
16
+ It achieves the following results on the evaluation set:
17
+ - Train Loss: 2.6073
18
+ - Validation Loss: 2.5441
19
+ - Epoch: 0
20
+
21
+ ## Model description
22
+
23
+ More information needed
24
+
25
+ ## Intended uses & limitations
26
+
27
+ More information needed
28
+
29
+ ## Training and evaluation data
30
+
31
+ More information needed
32
+
33
+ ## Training procedure
34
+
35
+ ### Training hyperparameters
36
+
37
+ The following hyperparameters were used during training:
38
+ - optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': False, 'is_legacy_optimizer': False, 'learning_rate': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 39, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
39
+ - training_precision: float32
40
+
41
+ ### Training results
42
+
43
+ | Train Loss | Validation Loss | Epoch |
44
+ |:----------:|:---------------:|:-----:|
45
+ | 2.6073 | 2.5441 | 0 |
46
+
47
+
48
+ ### Framework versions
49
+
50
+ - Transformers 4.30.2
51
+ - TensorFlow 2.12.0
52
+ - Datasets 2.13.1
53
+ - Tokenizers 0.13.3
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "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": "branch_address",
13
+ "1": "activate_card",
14
+ "2": "past_transactions",
15
+ "3": "dispatch_status",
16
+ "4": "outstanding_balance",
17
+ "5": "card_issue",
18
+ "6": "ifsc_code",
19
+ "7": "generate_pin",
20
+ "8": "unauthorised_transaction",
21
+ "9": "loan_query",
22
+ "10": "balance_enquiry",
23
+ "11": "change_limit",
24
+ "12": "block",
25
+ "13": "lost"
26
+ },
27
+ "initializer_range": 0.02,
28
+ "label2id": {
29
+ "activate_card": 1,
30
+ "balance_enquiry": 10,
31
+ "block": 12,
32
+ "branch_address": 0,
33
+ "card_issue": 5,
34
+ "change_limit": 11,
35
+ "dispatch_status": 3,
36
+ "generate_pin": 7,
37
+ "ifsc_code": 6,
38
+ "loan_query": 9,
39
+ "lost": 13,
40
+ "outstanding_balance": 4,
41
+ "past_transactions": 2,
42
+ "unauthorised_transaction": 8
43
+ },
44
+ "max_position_embeddings": 512,
45
+ "model_type": "distilbert",
46
+ "n_heads": 12,
47
+ "n_layers": 6,
48
+ "pad_token_id": 0,
49
+ "qa_dropout": 0.1,
50
+ "seq_classif_dropout": 0.2,
51
+ "sinusoidal_pos_embds": false,
52
+ "tie_weights_": true,
53
+ "transformers_version": "4.30.2",
54
+ "vocab_size": 30522
55
+ }
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
+ }
tf_model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16de27573a723f00a914e0996a8379c64714af35dcf35f58a61dc9dae622b686
3
+ size 267988672
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff