vincentmin commited on
Commit
9b44de3
1 Parent(s): e122368

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: 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: False
16
- - bnb_4bit_compute_dtype: float16
17
- ### Framework versions
 
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- - PEFT 0.5.0.dev0
 
 
 
 
1
  ---
2
+ base_model: meta-llama/Llama-2-7b-chat-hf
3
+ tags:
4
+ - generated_from_trainer
5
+ model-index:
6
+ - name: llama-7b-orca
7
+ results: []
8
  ---
9
+
10
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
11
+ should probably proofread and complete it, then remove this comment. -->
12
+
13
+ # llama-7b-orca
14
+
15
+ This model is a fine-tuned version of [meta-llama/Llama-2-7b-chat-hf](https://huggingface.co/meta-llama/Llama-2-7b-chat-hf) on an unknown dataset.
16
+ It achieves the following results on the evaluation set:
17
+ - Loss: 1.4944
18
+
19
+ ## Model description
20
+
21
+ More information needed
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
+ - learning_rate: 5e-05
37
+ - train_batch_size: 1
38
+ - eval_batch_size: 1
39
+ - seed: 42
40
+ - gradient_accumulation_steps: 4
41
+ - total_train_batch_size: 4
42
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
43
+ - lr_scheduler_type: linear
44
+ - num_epochs: 1
45
+
46
+ ### Training results
47
 
48
+ | Training Loss | Epoch | Step | Validation Loss |
49
+ |:-------------:|:-----:|:----:|:---------------:|
50
+ | 1.6959 | 0.08 | 200 | 1.6441 |
51
+ | 1.6234 | 0.17 | 400 | 1.5693 |
52
+ | 1.5931 | 0.25 | 600 | 1.5452 |
53
+ | 1.5003 | 0.34 | 800 | 1.5316 |
54
+ | 1.5346 | 0.42 | 1000 | 1.5209 |
55
+ | 1.5026 | 0.51 | 1200 | 1.5123 |
56
+ | 1.5608 | 0.59 | 1400 | 1.5059 |
57
+ | 1.5332 | 0.68 | 1600 | 1.5009 |
58
+ | 1.5209 | 0.76 | 1800 | 1.4970 |
59
+ | 1.4955 | 0.85 | 2000 | 1.4944 |
60
+
61
+
62
+ ### Framework versions
63
 
64
+ - Transformers 4.32.0.dev0
65
+ - Pytorch 2.0.1+cu118
66
+ - Datasets 2.13.1
67
+ - Tokenizers 0.13.3