sadkins65 commited on
Commit
508abc6
1 Parent(s): f72a64e

Upload folder using huggingface_hub

Browse files
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "./test_llama1.1b_W4A16_channel_compressed",
3
  "architectures": [
4
  "LlamaForCausalLM"
5
  ],
@@ -38,7 +38,7 @@
38
  },
39
  "sparsity_config": {
40
  "format": "dense",
41
- "global_sparsity": 19.26420974588696,
42
  "registry_requires_subclass": false,
43
  "sparsity_structure": "unstructured"
44
  }
@@ -59,7 +59,7 @@
59
  "rope_theta": 10000.0,
60
  "tie_word_embeddings": false,
61
  "torch_dtype": "float32",
62
- "transformers_version": "4.39.3",
63
  "use_cache": true,
64
  "vocab_size": 32000
65
  }
 
1
  {
2
+ "_name_or_path": "/network/sadkins/llama1.1b_W4A16_channel_compressed",
3
  "architectures": [
4
  "LlamaForCausalLM"
5
  ],
 
38
  },
39
  "sparsity_config": {
40
  "format": "dense",
41
+ "global_sparsity": 19.09593405666055,
42
  "registry_requires_subclass": false,
43
  "sparsity_structure": "unstructured"
44
  }
 
59
  "rope_theta": 10000.0,
60
  "tie_word_embeddings": false,
61
  "torch_dtype": "float32",
62
+ "transformers_version": "4.39.0",
63
  "use_cache": true,
64
  "vocab_size": 32000
65
  }
generation_config.json CHANGED
@@ -3,5 +3,5 @@
3
  "eos_token_id": 2,
4
  "max_length": 2048,
5
  "pad_token_id": 0,
6
- "transformers_version": "4.39.3"
7
  }
 
3
  "eos_token_id": 2,
4
  "max_length": 2048,
5
  "pad_token_id": 0,
6
+ "transformers_version": "4.39.0"
7
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:81c34de4541f8c5b1f8c28db806396483cd474c4f3521b6985d42dd8c0486cb2
3
  size 1011146888
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0e68908a6e7a66b8402436e489d5f439163752faa77f5ed61fd095728ef0ce4
3
  size 1011146888
recipe.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ test_stage:
2
+ quant_modifiers:
3
+ vLLMQuantizationModifier:
4
+ ignore: [lm_head]
5
+ config_groups:
6
+ group_0:
7
+ weights: {num_bits: 4, type: int, symmetric: true, strategy: channel}
8
+ targets: [Linear]
9
+ SparseGPTModifier: {sparsity: 0.0, quantize: true, sequential_update: false}
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "bos_token": "<s>",
31
+ "chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "legacy": false,
35
+ "model_max_length": 1000000000000000019884624838656,
36
+ "pad_token": "</s>",
37
+ "padding_side": "right",
38
+ "sp_model_kwargs": {},
39
+ "tokenizer_class": "LlamaTokenizer",
40
+ "unk_token": "<unk>",
41
+ "use_default_system_prompt": false
42
+ }