milkzheng commited on
Commit
0c16a55
·
verified ·
1 Parent(s): 7e7637c

Upload GrandQC/GrandQC_tissue_seg_config.json with huggingface_hub

Browse files
GrandQC/GrandQC_tissue_seg_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "GrandQC Tissue Segmentation",
3
+ "arch": "unetplusplus",
4
+ "encoder_name": "timm-efficientnet-b0",
5
+ "encoder_weights": "imagenet",
6
+ "in_channels": 3,
7
+ "classes": 2,
8
+ "activation": null,
9
+ "input_size": [
10
+ 224,
11
+ 224
12
+ ],
13
+ "expected_input_shape": [
14
+ 1,
15
+ 3,
16
+ 224,
17
+ 224
18
+ ],
19
+ "output_classes": [
20
+ "background",
21
+ "tissue"
22
+ ],
23
+ "preprocessing": {
24
+ "normalization": "imagenet",
25
+ "mean": [
26
+ 0.485,
27
+ 0.456,
28
+ 0.406
29
+ ],
30
+ "std": [
31
+ 0.229,
32
+ 0.224,
33
+ 0.225
34
+ ],
35
+ "description": "Apply ImageNet normalization to input images"
36
+ },
37
+ "model_version": "1.0",
38
+ "build_date": "2025-07-18T10:26:05.873076",
39
+ "torch_version": "2.7.1",
40
+ "source_weights": "https://zenodo.org/records/14507273/files/Tissue_Detection_MPP10.pth",
41
+ "description": "Tissue segmentation model for histopathology images at MPP 10",
42
+ "usage_example": "Input RGB images of size 224x224, outputs 2-channel segmentation mask"
43
+ }