cp_examples/mip_finetune/train_mip.py [17:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    HistogramNormalize,
    NanToInt,
    RemapLabel,
    TensorToRGB,
)
from covidprognosis.plmodules import XrayDataModule
from torchvision import transforms

from cp_examples.mip_finetune.mip_model import MIPModule


def build_args(arg_defaults=None):
    pl.seed_everything(1234)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cp_examples/sip_finetune/train_sip.py [19:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    HistogramNormalize,
    NanToInt,
    RemapLabel,
    TensorToRGB,
)
from covidprognosis.plmodules import XrayDataModule
from torchvision import transforms

from sip_finetune import SipModule


def build_args(arg_defaults=None):
    pl.seed_everything(1234)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



