-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
72 lines (65 loc) · 1.69 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
class BinaryModelConfig:
seed = 42
in_channels = 1
layers_to_freeze = 0
pre_transforms = [
dict(
name="Resize",
params=dict(
height=512,
width=512,
p=1.0,
)
),
]
augmentations = []
post_transforms = []
output_channels = 2
model = 'UnetPlusPlus'
backbone = 'resnext101_32x4d'
encoder_weights = 'swsl'
best_dict = 'checkpoints/Binary.pth'
link = 'https://drive.google.com/uc?id=1uUb8rw8JM6sG9xtaahBrr4SCBcWB70qr'
class MultiModelConfig:
seed = 42
in_channels = 1
layers_to_freeze = 0
pre_transforms = [
dict(
name="Resize",
params=dict(
height=512,
width=512,
p=1.0,
)
),
]
augmentations = []
post_transforms = []
output_channels = 4
model = 'UnetPlusPlus'
backbone = 'resnet101'
best_dict = 'checkpoints/MultiClass.pth'
link = 'https://drive.google.com/uc?id=1W8V3t-TDXH7Bwem6-2I6vYKLmQmOiyXa'
class LungsModelConfig:
seed = 42
in_channels = 1
layers_to_freeze = 0
pre_transforms = [
dict(
name="Resize",
params=dict(
height=512,
width=512,
p=1.0,
)
),
]
augmentations = []
post_transforms = []
output_channels = 3
model = 'UnetPlusPlus'
backbone = 'resnext101_32x4d'
encoder_weights = 'swsl'
best_dict = 'checkpoints/Lungs.pth'
link = 'https://drive.google.com/uc?id=1n0evx7Rk0z5MKqo1sXZtX3qkWlwAuTYB'