Files changed (1) hide show
  1. config.json +33 -0
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "genbio_pathfm",
3
+ "architectures": ["GenBioPathFMModel"],
4
+ "auto_map": {
5
+ "AutoConfig": "configuration_genbio_pathfm.GenBioPathFMConfig",
6
+ "AutoModel": "modeling_genbio_pathfm.GenBioPathFMModel"
7
+ },
8
+ "img_size": 224,
9
+ "patch_size": 16,
10
+ "in_chans": 1,
11
+ "embed_dim": 1536,
12
+ "depth": 40,
13
+ "num_heads": 24,
14
+ "ffn_ratio": 4,
15
+ "n_storage_tokens": 4,
16
+ "ffn_layer": "swiglu64",
17
+ "layerscale_init": 1e-5,
18
+ "qkv_bias": false,
19
+ "proj_bias": true,
20
+ "ffn_bias": true,
21
+ "norm_layer": "layernorm",
22
+ "drop_path_rate": 0.0,
23
+ "pos_embed_rope_base": 100.0,
24
+ "pos_embed_rope_min_period": null,
25
+ "pos_embed_rope_max_period": null,
26
+ "pos_embed_rope_normalize_coords": "separate",
27
+ "pos_embed_rope_shift_coords": null,
28
+ "pos_embed_rope_jitter_coords": true,
29
+ "pos_embed_rope_rescale_coords": 2,
30
+ "pos_embed_rope_dtype": "bf16",
31
+ "image_mean": [0.697, 0.575, 0.728],
32
+ "image_std": [0.188, 0.240, 0.187]
33
+ }