VitaliiVrublevskyi commited on
Commit
a692ab0
·
1 Parent(s): 2c24fad

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -13
README.md CHANGED
@@ -1,20 +1,67 @@
1
  ---
2
- library_name: peft
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  ## Training procedure
5
 
 
6
 
7
- The following `bitsandbytes` quantization config was used during training:
8
- - load_in_8bit: True
9
- - load_in_4bit: False
10
- - llm_int8_threshold: 6.0
11
- - llm_int8_skip_modules: None
12
- - llm_int8_enable_fp32_cpu_offload: False
13
- - llm_int8_has_fp16_weight: False
14
- - bnb_4bit_quant_type: fp4
15
- - bnb_4bit_use_double_quant: False
16
- - bnb_4bit_compute_dtype: float32
17
- ### Framework versions
18
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- - PEFT 0.4.0
 
 
 
 
1
  ---
2
+ base_model: meta-llama/Llama-2-7b-hf
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - glue
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ model-index:
11
+ - name: Llama-2-7b-hf-finetuned-mrpc-v0.4
12
+ results: []
13
  ---
14
+
15
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
16
+ should probably proofread and complete it, then remove this comment. -->
17
+
18
+ # Llama-2-7b-hf-finetuned-mrpc-v0.4
19
+
20
+ This model is a fine-tuned version of [meta-llama/Llama-2-7b-hf](https://huggingface.co/meta-llama/Llama-2-7b-hf) on the glue dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 0.5492
23
+ - Accuracy: 0.7402
24
+ - F1: 0.8251
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
  ## Training procedure
39
 
40
+ ### Training hyperparameters
41
 
42
+ The following hyperparameters were used during training:
43
+ - learning_rate: 2e-05
44
+ - train_batch_size: 16
45
+ - eval_batch_size: 16
46
+ - seed: 42
47
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
48
+ - lr_scheduler_type: linear
49
+ - num_epochs: 5
50
+
51
+ ### Training results
 
52
 
53
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
54
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|
55
+ | No log | 1.0 | 230 | 0.6542 | 0.6446 | 0.7695 |
56
+ | No log | 2.0 | 460 | 0.5938 | 0.6912 | 0.7968 |
57
+ | 0.6489 | 3.0 | 690 | 0.5694 | 0.7230 | 0.8151 |
58
+ | 0.6489 | 4.0 | 920 | 0.5503 | 0.7230 | 0.8138 |
59
+ | 0.5299 | 5.0 | 1150 | 0.5492 | 0.7402 | 0.8251 |
60
+
61
+
62
+ ### Framework versions
63
 
64
+ - Transformers 4.31.0
65
+ - Pytorch 2.0.1+cu118
66
+ - Datasets 2.14.5
67
+ - Tokenizers 0.13.3