maidacundo commited on
Commit
b81efcd
1 Parent(s): bec40ca

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -13
README.md CHANGED
@@ -1,20 +1,72 @@
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: False
9
- - load_in_4bit: True
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: nf4
15
- - bnb_4bit_use_double_quant: True
16
- - bnb_4bit_compute_dtype: bfloat16
17
- ### Framework versions
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- - PEFT 0.4.0.dev0
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ base_model: tiiuae/falcon-7b
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - spider
8
+ model-index:
9
+ - name: falcon_qlora_sql_r2
10
+ results: []
11
  ---
12
+
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ # falcon_qlora_sql_r2
17
+
18
+ This model is a fine-tuned version of [tiiuae/falcon-7b](https://huggingface.co/tiiuae/falcon-7b) on the spider dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 0.1735
21
+
22
+ ## Model description
23
+
24
+ More information needed
25
+
26
+ ## Intended uses & limitations
27
+
28
+ More information needed
29
+
30
+ ## Training and evaluation data
31
+
32
+ More information needed
33
+
34
  ## Training procedure
35
 
36
+ ### Training hyperparameters
37
 
38
+ The following hyperparameters were used during training:
39
+ - learning_rate: 0.0001
40
+ - train_batch_size: 16
41
+ - eval_batch_size: 16
42
+ - seed: 42
43
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
44
+ - lr_scheduler_type: linear
45
+ - lr_scheduler_warmup_steps: 43.7
46
+ - num_epochs: 3
47
+
48
+ ### Training results
49
 
50
+ | Training Loss | Epoch | Step | Validation Loss |
51
+ |:-------------:|:-----:|:----:|:---------------:|
52
+ | 0.2993 | 0.23 | 100 | 0.2863 |
53
+ | 0.8003 | 0.46 | 200 | 0.3358 |
54
+ | 0.1872 | 0.68 | 300 | 0.2424 |
55
+ | 0.1267 | 0.91 | 400 | 0.2362 |
56
+ | 0.2214 | 1.14 | 500 | 0.2564 |
57
+ | 0.2885 | 1.37 | 600 | 0.2187 |
58
+ | 0.1654 | 1.6 | 700 | 0.1988 |
59
+ | 0.1633 | 1.83 | 800 | 0.2062 |
60
+ | 0.0381 | 2.05 | 900 | 0.1868 |
61
+ | 0.0633 | 2.28 | 1000 | 0.1767 |
62
+ | 0.163 | 2.51 | 1100 | 0.1861 |
63
+ | 0.1718 | 2.74 | 1200 | 0.1875 |
64
+ | 0.1743 | 2.97 | 1300 | 0.1854 |
65
+
66
+
67
+ ### Framework versions
68
 
69
+ - Transformers 4.31.0.dev0
70
+ - Pytorch 2.0.1+cu117
71
+ - Datasets 2.13.1
72
+ - Tokenizers 0.13.3