pevers commited on
Commit
9b999cd
·
1 Parent(s): f3c299a

add details

Browse files
audio_tokenizer_config.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "audio_tokenizer_class": "DacModel",
3
+ "audio_tokenizer_name_or_path": "descript/dac_44khz"
4
+ }
5
+
config.json CHANGED
@@ -22,7 +22,6 @@
22
  "num_key_value_heads": 4,
23
  "rope_scaling": null,
24
  "rope_theta": 10000.0,
25
- "use_cache": true,
26
  "vocab_size": 1028
27
  },
28
  "delay_pattern": [
@@ -59,6 +58,6 @@
59
  "norm_eps": 1e-05,
60
  "pad_token_id": 1025,
61
  "torch_dtype": "float32",
62
- "transformers_version": "4.53.3",
63
- "use_cache": true
64
  }
 
 
22
  "num_key_value_heads": 4,
23
  "rope_scaling": null,
24
  "rope_theta": 10000.0,
 
25
  "vocab_size": 1028
26
  },
27
  "delay_pattern": [
 
58
  "norm_eps": 1e-05,
59
  "pad_token_id": 1025,
60
  "torch_dtype": "float32",
61
+ "transformers_version": "4.53.0.dev0"
 
62
  }
63
+
generation_config.json CHANGED
@@ -6,6 +6,7 @@
6
  "max_length": 3072,
7
  "pad_token_id": 1025,
8
  "temperature": 1.8,
9
- "top_p": 0.9,
10
- "transformers_version": "4.53.3"
 
11
  }
 
6
  "max_length": 3072,
7
  "pad_token_id": 1025,
8
  "temperature": 1.8,
9
+ "top_k": 50,
10
+ "top_p": 0.90,
11
+ "transformers_version": "4.53.0.dev0"
12
  }
preprocessor_config.json CHANGED
@@ -1,8 +1,10 @@
1
  {
2
- "feature_extractor_type": "DacFeatureExtractor",
 
 
 
 
3
  "processor_class": "DiaProcessor",
4
- "audio_eos_value": 1024,
5
- "audio_pad_value": 1025,
6
- "audio_bos_value": 1026
7
  }
8
-
 
1
  {
2
+ "feature_extractor_type": "DiaFeatureExtractor",
3
+ "feature_size": 1,
4
+ "hop_length": 512,
5
+ "padding_side": "right",
6
+ "padding_value": 0.0,
7
  "processor_class": "DiaProcessor",
8
+ "return_attention_mask": true,
9
+ "sampling_rate": 44100
 
10
  }
 
special_token_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "pad_token": {
3
+ "content": "<pad>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "unk_token": {
10
+ "content": "<pad>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ }
16
+ }
17
+
tokenizer_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<pad>",
5
+ "lstrip": false,
6
+ "normalized": true,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[S1]",
13
+ "lstrip": false,
14
+ "normalized": true,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": false
18
+ },
19
+ "2": {
20
+ "content": "[S2]",
21
+ "lstrip": false,
22
+ "normalized": true,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": false
26
+ }
27
+ },
28
+ "clean_up_tokenization_spaces": false,
29
+ "extra_special_tokens": {},
30
+ "max_length": 1024,
31
+ "model_max_length": 1000000000000000019884624838656,
32
+ "pad_token": "<pad>",
33
+ "processor_class": "DiaProcessor",
34
+ "tokenizer_class": "DiaTokenizer",
35
+ "unk_token": "<pad>"
36
+ }
37
+