xdtl

Results 3 issues of xdtl

I cannot find definition of model "hrnet34_unet64". So I made it as follows in unet.py: ```@Model def hrnet34_unet64(input_channels=3, num_classes=1, dropout=0.0, pretrained=True): encoder = E.HRNetV2Encoder34(pretrained=pretrained, layers=[0, 1, 2, 3, 4]) if...

For very large network, how do I call the function so that it outputs every row, even if there are thousands of lines? Thanks!

I am a bit confused about the network structure when comparing it with what was originally proposed in the paper (Fig. 1). At the very bottom of the unet, the...