Create config.json
Browse files- config.json +81 -0
config.json
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_zero_attn": false,
|
3 |
+
"architectures": [
|
4 |
+
"UniBioseqForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bias": true,
|
8 |
+
"eos_token_id": 2,
|
9 |
+
"hidden_dropout_prob": 0.1,
|
10 |
+
"hidden_size": 1280,
|
11 |
+
"id2label": {
|
12 |
+
"0": "LABEL_0"
|
13 |
+
},
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 5120,
|
16 |
+
"is_prefix_decoder": true,
|
17 |
+
"is_decoder": true,
|
18 |
+
"is_clm":true,
|
19 |
+
"label2id": {
|
20 |
+
"LABEL_0": 0
|
21 |
+
},
|
22 |
+
"layer_norm_eps": 1e-12,
|
23 |
+
"mask_token_id": 40,
|
24 |
+
"max_position_embeddings": 3079,
|
25 |
+
"model_type": "UniBioseqLM",
|
26 |
+
"need_weights": false,
|
27 |
+
"num_attention_heads": 20,
|
28 |
+
"num_hidden_layers": 33,
|
29 |
+
"pad_token_id": 1,
|
30 |
+
"pooling_type": "MEAN",
|
31 |
+
"problem_type": "regression",
|
32 |
+
"prompt_token_id": 36,
|
33 |
+
"token_dropout": false,
|
34 |
+
"torch_dtype": "float32",
|
35 |
+
"transformers_version": "4.38.2",
|
36 |
+
"use_cache": false,
|
37 |
+
"vocab_list": [
|
38 |
+
"<cls>",
|
39 |
+
"<pad>",
|
40 |
+
"<eos>",
|
41 |
+
"<unk>",
|
42 |
+
"L",
|
43 |
+
"A",
|
44 |
+
"G",
|
45 |
+
"V",
|
46 |
+
"S",
|
47 |
+
"E",
|
48 |
+
"R",
|
49 |
+
"T",
|
50 |
+
"I",
|
51 |
+
"D",
|
52 |
+
"P",
|
53 |
+
"K",
|
54 |
+
"Q",
|
55 |
+
"N",
|
56 |
+
"F",
|
57 |
+
"Y",
|
58 |
+
"M",
|
59 |
+
"H",
|
60 |
+
"W",
|
61 |
+
"C",
|
62 |
+
"X",
|
63 |
+
"B",
|
64 |
+
"U",
|
65 |
+
"Z",
|
66 |
+
"O",
|
67 |
+
".",
|
68 |
+
"-",
|
69 |
+
"a",
|
70 |
+
"u",
|
71 |
+
"c",
|
72 |
+
"g",
|
73 |
+
"n",
|
74 |
+
"+",
|
75 |
+
"<null_1>",
|
76 |
+
"<null_2>",
|
77 |
+
"<null_3>",
|
78 |
+
"<mask>"
|
79 |
+
],
|
80 |
+
"vocab_size": 41
|
81 |
+
}
|