jeffwan commited on
Commit
83a6385
1 Parent(s): 13d90e3

Update to use latest delta weights

Browse files

Adapt to new changes. related prs:
https://github.com/lm-sys/FastChat/pull/189
https://github.com/lm-sys/FastChat/pull/167

config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "/home/ubuntu/llama-13b-hf",
3
  "architectures": [
4
  "LlamaForCausalLM"
5
  ],
 
1
  {
2
+ "_name_or_path": "/root/llama-13b-hf",
3
  "architectures": [
4
  "LlamaForCausalLM"
5
  ],
pytorch_model-00001-of-00003.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:066db2c1b346e034de827bc4d47e2ce580e1e4e0b79c8a1184b5bb4c29f3e2d0
3
- size 9948735223
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bac14d265d543d2ec08047c274bfdf5eda35140cf20d3c70dd31c02dbca62e6
3
+ size 9948738670
pytorch_model-00002-of-00003.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:25e60dfcb3c3abb2c146412763cccdc8357f47f7f53704866819d74d775cbf91
3
- size 9904161599
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:668c7ef449e4aafd76cb4f63fc3b0bcbfa165bb004352ede1b727eb0d59aa8ef
3
+ size 9904165024
pytorch_model-00003-of-00003.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cc35c8d0827911e51b61743d77aac22f017468c0f33576286e4231e89f110e24
3
- size 6506671316
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53a19ed5c724554b5315902b26519708e166d57827d559fb1f1cec1c57db3da9
3
+ size 6506673929
special_tokens_map.json CHANGED
@@ -1,6 +1,23 @@
1
  {
2
- "bos_token": "</s>",
3
- "eos_token": "</s>",
4
- "pad_token": "[PAD]",
5
- "unk_token": "</s>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  }
 
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
+ "unk_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
  }
tokenizer_config.json CHANGED
@@ -1,10 +1,34 @@
1
  {
2
- "bos_token": "",
 
 
 
 
 
 
 
 
 
3
  "clean_up_tokenization_spaces": false,
4
- "eos_token": "",
5
- "model_max_length": 2048,
6
- "padding_side": "right",
7
- "special_tokens_map_file": "/home/gcpuser/hf-output/llama-13b/special_tokens_map.json",
 
 
 
 
 
 
 
 
8
  "tokenizer_class": "LlamaTokenizer",
9
- "unk_token": ""
 
 
 
 
 
 
 
10
  }
 
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": true,
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": true,
18
+ "rstrip": false,
19
+ "single_word": false
20
+ },
21
+ "model_max_length": 1000000000000000019884624838656,
22
+ "pad_token": null,
23
+ "sp_model_kwargs": {},
24
+ "special_tokens_map_file": "/root/vicuna-13b-delta-v0/special_tokens_map.json",
25
  "tokenizer_class": "LlamaTokenizer",
26
+ "unk_token": {
27
+ "__type": "AddedToken",
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false
33
+ }
34
  }