huh707 commited on
Commit
b4b9b63
Β·
1 Parent(s): 228cf23

Add vicuna prune 0.60 model

Browse files
{vicuna_prune60/2024-05-01-03-26-22 β†’ 2024-05-01-03-26-22}/description.txt RENAMED
File without changes
{vicuna_prune60/2024-05-01-03-26-22 β†’ 2024-05-01-03-26-22}/train.sh RENAMED
File without changes
{vicuna_prune60/2024-05-01-03-26-22 β†’ 2024-05-01-03-26-22}/training.log RENAMED
File without changes
{vicuna_prune60/2024-05-01-03-43-15 β†’ 2024-05-01-03-43-15}/description.txt RENAMED
File without changes
{vicuna_prune60/2024-05-01-03-43-15 β†’ 2024-05-01-03-43-15}/train.sh RENAMED
File without changes
{vicuna_prune60/2024-05-01-03-43-15 β†’ 2024-05-01-03-43-15}/training.log RENAMED
File without changes
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/home/ubuntu/model_weights/vicuna-7b-v1.3",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "bos_token_id": 1,
7
+ "eos_token_id": 2,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 4096,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 11008,
12
+ "max_position_embeddings": 2048,
13
+ "model_type": "llama",
14
+ "num_attention_heads": 32,
15
+ "num_hidden_layers": 32,
16
+ "pad_token_id": 0,
17
+ "rms_norm_eps": 1e-06,
18
+ "tie_word_embeddings": false,
19
+ "torch_dtype": "float16",
20
+ "transformers_version": "4.28.1",
21
+ "use_cache": true,
22
+ "vocab_size": 32000
23
+ }
vicuna_prune60/description.txt β†’ description.txt RENAMED
File without changes
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.28.1"
7
+ }
vicuna_prune60/pytorch_model.bin β†’ pytorch_model.bin RENAMED
File without changes
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<unk>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": true,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }