WDong commited on
Commit
f094fa4
1 Parent(s): ba28d66

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -3
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # 0506_9_8
5
+
6
+ This model is a fine-tuned version of [../../models/Qwen1.5-7B-sft-0502](https://huggingface.co/../../models/Qwen1.5-7B-sft-0502) on the alpaca_formatted_review_new_data_0505_greater_8 dataset.
7
+ It achieves the following results on the evaluation set:
8
+
9
+ - Loss: 0.5497
10
+
11
+ ## Model description
12
+
13
+ Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen, the improvements include:
14
+
15
+ * 8 model sizes, including 0.5B, 1.8B, 4B, 7B, 14B, 32B and 72B dense models, and an MoE model of 14B with 2.7B activated;
16
+ * Significant performance improvement in Chat models;
17
+ * Multilingual support of both base and chat models;
18
+ * Stable support of 32K context length for models of all sizes
19
+ * No need of `trust_remote_code`.
20
+
21
+ For more details, please refer to the [blog post](https://qwenlm.github.io/blog/qwen1.5/) and [GitHub repo](https://github.com/QwenLM/Qwen1.5).
22
+
23
+ ## Intended uses & limitations
24
+
25
+ More information needed
26
+
27
+ ## Training and evaluation data
28
+
29
+ More information needed
30
+
31
+ ## Training procedure
32
+
33
+ ### Training hyperparameters
34
+
35
+ The following hyperparameters were used during training:
36
+
37
+ - learning_rate: 7e-05
38
+ - train_batch_size: 2
39
+ - eval_batch_size: 1
40
+ - seed: 42
41
+ - distributed_type: multi-GPU
42
+ - num_devices: 2
43
+ - gradient_accumulation_steps: 4
44
+ - total_train_batch_size: 16
45
+ - total_eval_batch_size: 2
46
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
47
+ - lr_scheduler_type: cosine
48
+ - lr_scheduler_warmup_steps: 13
49
+ - num_epochs: 5.0
50
+ - mixed_precision_training: Native AMP
51
+
52
+ ### Training results
53
+
54
+ | Training Loss | Epoch | Step | Validation Loss |
55
+ | :-----------: | :----: | :--: | :-------------: |
56
+ | 0.6358 | 0.7619 | 20 | 0.5865 |
57
+ | 0.6379 | 1.5238 | 40 | 0.5621 |
58
+ | 0.6067 | 2.2857 | 60 | 0.5561 |
59
+ | 0.5339 | 3.0476 | 80 | 0.5515 |
60
+ | 0.6749 | 3.8095 | 100 | 0.5500 |
61
+ | 0.6351 | 4.5714 | 120 | 0.5497 |
62
+
63
+
64
+ ### Framework versions
65
+
66
+ - PEFT 0.10.0
67
+ - Transformers 4.40.0
68
+ - Pytorch 2.1.0+cu121
69
+ - Datasets 2.14.5
70
+ - Tokenizers 0.19.1