Nic-Ma commited on
Commit
fd52691
1 Parent(s): 2ed7b69

Upload metadata.json

Browse files
Files changed (1) hide show
  1. metadata.json +76 -0
metadata.json ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_202203171008.json",
3
+ "version": "0.1.0",
4
+ "changelog": {
5
+ "0.1.0": "complete the model package",
6
+ "0.0.1": "initialize the model package structure"
7
+ },
8
+ "monai_version": "0.8.0",
9
+ "pytorch_version": "1.10.0",
10
+ "numpy_version": "1.21.2",
11
+ "optional_packages_version": {
12
+ "nibabel": "3.2.1"
13
+ },
14
+ "task": "Decathlon spleen segmentation",
15
+ "description": "A pre-trained model for volumetric (3D) segmentation of the spleen from CT image",
16
+ "authorship": "MONAI team",
17
+ "copyright": "Copyright (c) MONAI Consortium",
18
+ "data_source": "Task09_Spleen.tar from http://medicaldecathlon.com/",
19
+ "data_type": "dicom",
20
+ "image_classes": "single channel data, intensity scaled to [0, 1]",
21
+ "label_classes": "single channel data, 1 is spleen, 0 is everything else",
22
+ "pred_classes": "2 channels OneHot data, channel 1 is spleen, channel 0 is background",
23
+ "eval_metrics": {
24
+ "mean_dice": 0.96
25
+ },
26
+ "intended_use": "This is an example, not to be used for diagnostic purposes",
27
+ "references": [
28
+ "Xia, Yingda, et al. '3D Semi-Supervised Learning with Uncertainty-Aware Multi-View Co-Training. arXiv preprint arXiv:1811.12506 (2018). https://arxiv.org/abs/1811.12506.",
29
+ "Kerfoot E., Clough J., Oksuz I., Lee J., King A.P., Schnabel J.A. (2019) Left-Ventricle Quantification Using Residual U-Net. In: Pop M. et al. (eds) Statistical Atlases and Computational Models of the Heart. Atrial Segmentation and LV Quantification Challenges. STACOM 2018. Lecture Notes in Computer Science, vol 11395. Springer, Cham. https://doi.org/10.1007/978-3-030-12029-0_40"
30
+ ],
31
+ "network_data_format": {
32
+ "inputs": {
33
+ "image": {
34
+ "type": "image",
35
+ "format": "magnitude",
36
+ "num_channels": 1,
37
+ "spatial_shape": [
38
+ 160,
39
+ 160,
40
+ 160
41
+ ],
42
+ "dtype": "float32",
43
+ "value_range": [
44
+ 0,
45
+ 1
46
+ ],
47
+ "is_patch_data": false,
48
+ "channel_def": {
49
+ "0": "image"
50
+ }
51
+ }
52
+ },
53
+ "outputs": {
54
+ "pred": {
55
+ "type": "image",
56
+ "format": "segmentation",
57
+ "num_channels": 2,
58
+ "spatial_shape": [
59
+ 160,
60
+ 160,
61
+ 160
62
+ ],
63
+ "dtype": "float32",
64
+ "value_range": [
65
+ 0,
66
+ 1
67
+ ],
68
+ "is_patch_data": false,
69
+ "channel_def": {
70
+ "0": "background",
71
+ "1": "spleen"
72
+ }
73
+ }
74
+ }
75
+ }
76
+ }