Kl1en3ver commited on
Commit
5a30fa1
·
verified ·
1 Parent(s): fd805c4

Kl1en3ver/cv-job-classifier

Browse files
Files changed (4) hide show
  1. README.md +73 -0
  2. config.json +79 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: distilbert-base-uncased
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - precision
11
+ - recall
12
+ model-index:
13
+ - name: checkpoints
14
+ results: []
15
+ ---
16
+
17
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
18
+ should probably proofread and complete it, then remove this comment. -->
19
+
20
+ # checkpoints
21
+
22
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 1.2531
25
+ - Accuracy: 0.8663
26
+ - F1: 0.8484
27
+ - Precision: 0.8453
28
+ - Recall: 0.8572
29
+
30
+ ## Model description
31
+
32
+ More information needed
33
+
34
+ ## Intended uses & limitations
35
+
36
+ More information needed
37
+
38
+ ## Training and evaluation data
39
+
40
+ More information needed
41
+
42
+ ## Training procedure
43
+
44
+ ### Training hyperparameters
45
+
46
+ The following hyperparameters were used during training:
47
+ - learning_rate: 2e-05
48
+ - train_batch_size: 16
49
+ - eval_batch_size: 16
50
+ - seed: 42
51
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
52
+ - lr_scheduler_type: linear
53
+ - lr_scheduler_warmup_steps: 200
54
+ - num_epochs: 5
55
+ - mixed_precision_training: Native AMP
56
+
57
+ ### Training results
58
+
59
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
60
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:|
61
+ | No log | 1.0 | 380 | 1.6631 | 0.7684 | 0.7529 | 0.7712 | 0.7652 |
62
+ | 2.4099 | 2.0 | 760 | 1.3388 | 0.8217 | 0.8075 | 0.8006 | 0.8296 |
63
+ | 1.2523 | 3.0 | 1140 | 1.3015 | 0.8454 | 0.8348 | 0.8357 | 0.8448 |
64
+ | 1.0863 | 4.0 | 1520 | 1.2908 | 0.8513 | 0.8387 | 0.8355 | 0.8500 |
65
+ | 1.0863 | 5.0 | 1900 | 1.2800 | 0.8579 | 0.8457 | 0.8421 | 0.8552 |
66
+
67
+
68
+ ### Framework versions
69
+
70
+ - Transformers 5.0.0
71
+ - Pytorch 2.10.0+cu128
72
+ - Datasets 4.0.0
73
+ - Tokenizers 0.22.2
config.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForSequenceClassification"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "bos_token_id": null,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "dtype": "float32",
11
+ "eos_token_id": null,
12
+ "hidden_dim": 3072,
13
+ "id2label": {
14
+ "0": "ACCOUNTANT",
15
+ "1": "ADVOCATE",
16
+ "2": "AGRICULTURE",
17
+ "3": "APPAREL",
18
+ "4": "ARTS",
19
+ "5": "AUTOMOBILE",
20
+ "6": "AVIATION",
21
+ "7": "BANKING",
22
+ "8": "BPO",
23
+ "9": "BUSINESS-DEVELOPMENT",
24
+ "10": "CHEF",
25
+ "11": "CONSTRUCTION",
26
+ "12": "CONSULTANT",
27
+ "13": "DESIGNER",
28
+ "14": "DIGITAL-MEDIA",
29
+ "15": "ENGINEERING",
30
+ "16": "FINANCE",
31
+ "17": "FITNESS",
32
+ "18": "HEALTHCARE",
33
+ "19": "HR",
34
+ "20": "INFORMATION-TECHNOLOGY",
35
+ "21": "PUBLIC-RELATIONS",
36
+ "22": "SALES",
37
+ "23": "TEACHER"
38
+ },
39
+ "initializer_range": 0.02,
40
+ "label2id": {
41
+ "ACCOUNTANT": 0,
42
+ "ADVOCATE": 1,
43
+ "AGRICULTURE": 2,
44
+ "APPAREL": 3,
45
+ "ARTS": 4,
46
+ "AUTOMOBILE": 5,
47
+ "AVIATION": 6,
48
+ "BANKING": 7,
49
+ "BPO": 8,
50
+ "BUSINESS-DEVELOPMENT": 9,
51
+ "CHEF": 10,
52
+ "CONSTRUCTION": 11,
53
+ "CONSULTANT": 12,
54
+ "DESIGNER": 13,
55
+ "DIGITAL-MEDIA": 14,
56
+ "ENGINEERING": 15,
57
+ "FINANCE": 16,
58
+ "FITNESS": 17,
59
+ "HEALTHCARE": 18,
60
+ "HR": 19,
61
+ "INFORMATION-TECHNOLOGY": 20,
62
+ "PUBLIC-RELATIONS": 21,
63
+ "SALES": 22,
64
+ "TEACHER": 23
65
+ },
66
+ "max_position_embeddings": 512,
67
+ "model_type": "distilbert",
68
+ "n_heads": 12,
69
+ "n_layers": 6,
70
+ "pad_token_id": 0,
71
+ "qa_dropout": 0.1,
72
+ "seq_classif_dropout": 0.2,
73
+ "sinusoidal_pos_embds": false,
74
+ "tie_weights_": true,
75
+ "tie_word_embeddings": true,
76
+ "transformers_version": "5.0.0",
77
+ "use_cache": false,
78
+ "vocab_size": 30522
79
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:048971045cd89c6127b8283b1839a787346cfa8ee223609bc5cca8eb54c0d826
3
+ size 267900240
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e5bd8c632134435094962c9977b12c5933bdd4c617e338629d8e5ddf9a486ca
3
+ size 5201