add model
Browse files- chronos_config.json +16 -0
- config.json +29 -0
- generation_config.json +7 -0
- pytorch_model.bin +3 -0
chronos_config.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"low_limit": -15.0,
|
3 |
+
"high_limit": 15.0,
|
4 |
+
"n_tokens": 4096,
|
5 |
+
"n_special_tokens": 2,
|
6 |
+
"pad_token_id": 0,
|
7 |
+
"eos_token_id": 1,
|
8 |
+
"use_eos_token": true,
|
9 |
+
"model_type": "seq2seq",
|
10 |
+
"context_length": 512,
|
11 |
+
"prediction_length": 64,
|
12 |
+
"num_samples": 20,
|
13 |
+
"temperature": 1.0,
|
14 |
+
"top_k": 50,
|
15 |
+
"top_p": 1.0
|
16 |
+
}
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"T5ForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"d_ff": 1536,
|
6 |
+
"d_kv": 64,
|
7 |
+
"d_model": 384,
|
8 |
+
"decoder_start_token_id": 0,
|
9 |
+
"dense_act_fn": "relu",
|
10 |
+
"dropout_rate": 0.1,
|
11 |
+
"eos_token_id": 1,
|
12 |
+
"feed_forward_proj": "relu",
|
13 |
+
"initializer_factor": 0.05,
|
14 |
+
"is_encoder_decoder": true,
|
15 |
+
"is_gated_act": false,
|
16 |
+
"layer_norm_epsilon": 1e-06,
|
17 |
+
"model_type": "t5",
|
18 |
+
"n_positions": 512,
|
19 |
+
"num_decoder_layers": 4,
|
20 |
+
"num_heads": 8,
|
21 |
+
"num_layers": 4,
|
22 |
+
"pad_token_id": 0,
|
23 |
+
"relative_attention_max_distance": 128,
|
24 |
+
"relative_attention_num_buckets": 32,
|
25 |
+
"torch_dtype": "bfloat16",
|
26 |
+
"transformers_version": "4.31.0",
|
27 |
+
"use_cache": true,
|
28 |
+
"vocab_size": 4096
|
29 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"decoder_start_token_id": 0,
|
4 |
+
"eos_token_id": 1,
|
5 |
+
"pad_token_id": 0,
|
6 |
+
"transformers_version": "4.31.0"
|
7 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a009ea2d6d916da48e620eefda4d11c1b072550f92be248b4c5abdde34cb2060
|
3 |
+
size 40943036
|