eczech commited on
Commit
e88309f
·
verified ·
1 Parent(s): b56f3b8

Upload folder using huggingface_hub

Browse files
unit_tests/evolutionary_constraint/ref_logprob_clm_sim/model/config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 1,
8
+ "dtype": "float32",
9
+ "eos_token_id": 2,
10
+ "head_dim": 16,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 32,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 128,
15
+ "max_position_embeddings": 512,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 2,
19
+ "num_hidden_layers": 2,
20
+ "num_key_value_heads": 2,
21
+ "pretraining_tp": 1,
22
+ "rms_norm_eps": 1e-06,
23
+ "rope_scaling": null,
24
+ "rope_theta": 10000.0,
25
+ "tie_word_embeddings": false,
26
+ "transformers_version": "4.57.0",
27
+ "use_cache": true,
28
+ "vocab_size": 5
29
+ }
unit_tests/evolutionary_constraint/ref_logprob_clm_sim/model/generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.57.0"
6
+ }
unit_tests/evolutionary_constraint/ref_logprob_clm_sim/model/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39dc828380b301493d6e2c760a55feb189748a0fab05450559b387d075d2116a
3
+ size 135104
unit_tests/evolutionary_constraint/ref_logprob_clm_sim/model/tokenizer_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 5,
3
+ "model_max_length": 512,
4
+ "tokenizer_class": "SimpleTokenizer",
5
+ "vocab": {
6
+ "A": 0,
7
+ "C": 1,
8
+ "G": 2,
9
+ "T": 3,
10
+ "N": 4
11
+ }
12
+ }