threem commited on
Commit
026b3e1
1 Parent(s): c8f7b04

llama2-fine-tuned-2

Browse files
Files changed (4) hide show
  1. README.md +13 -0
  2. special_tokens_map.json +23 -0
  3. tokenizer.model +3 -0
  4. tokenizer_config.json +35 -0
README.md CHANGED
@@ -7,6 +7,7 @@ datasets:
7
  model-index:
8
  - name: llama2-fine-tuned-2
9
  results: []
 
10
  ---
11
 
12
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -30,6 +31,17 @@ More information needed
30
 
31
  ## Training procedure
32
 
 
 
 
 
 
 
 
 
 
 
 
33
  ### Training hyperparameters
34
 
35
  The following hyperparameters were used during training:
@@ -49,6 +61,7 @@ The following hyperparameters were used during training:
49
 
50
  ### Framework versions
51
 
 
52
  - Transformers 4.31.0
53
  - Pytorch 2.0.1+cu118
54
  - Datasets 2.14.4
 
7
  model-index:
8
  - name: llama2-fine-tuned-2
9
  results: []
10
+ library_name: peft
11
  ---
12
 
13
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
31
 
32
  ## Training procedure
33
 
34
+
35
+ The following `bitsandbytes` quantization config was used during training:
36
+ - load_in_8bit: True
37
+ - load_in_4bit: False
38
+ - llm_int8_threshold: 6.0
39
+ - llm_int8_skip_modules: None
40
+ - llm_int8_enable_fp32_cpu_offload: False
41
+ - llm_int8_has_fp16_weight: False
42
+ - bnb_4bit_quant_type: fp4
43
+ - bnb_4bit_use_double_quant: False
44
+ - bnb_4bit_compute_dtype: float32
45
  ### Training hyperparameters
46
 
47
  The following hyperparameters were used during training:
 
61
 
62
  ### Framework versions
63
 
64
+ - PEFT 0.5.0.dev0
65
  - Transformers 4.31.0
66
  - Pytorch 2.0.1+cu118
67
  - Datasets 2.14.4
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "bos_token": {
5
+ "__type": "AddedToken",
6
+ "content": "<s>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "clean_up_tokenization_spaces": false,
13
+ "eos_token": {
14
+ "__type": "AddedToken",
15
+ "content": "</s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false
20
+ },
21
+ "legacy": false,
22
+ "model_max_length": 1000000000000000019884624838656,
23
+ "pad_token": null,
24
+ "padding_side": "right",
25
+ "sp_model_kwargs": {},
26
+ "tokenizer_class": "LlamaTokenizer",
27
+ "unk_token": {
28
+ "__type": "AddedToken",
29
+ "content": "<unk>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false
34
+ }
35
+ }