CoolFace
Datasetpublic

MONAI/testing_data

This is testing data for use with MONAI unit tests.

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
1likes8.4kdownloads
dynunet_0.py17 linesDownload Raw Back to dynunet_0
1from create_data import create_model_test_data2strides = (2, 2, 2, 2)3 4# network params5params = {6    "spatial_dims": 3,7    "in_channels": 4,8    "out_channels": 2,9    "kernel_size": (3, 3, 3, 1),10    "strides": strides,11    "upsample_kernel_size": strides[1:],12}13# in shape14input_shape = (1, params["in_channels"], 64, 64, 64)15# create data16create_model_test_data("DynUNet", params, input_shape)17