8000 GitHub - rijobro/monai-test-data: test repository for storing networks and their forward data to ensure consistency
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

rijobro/monai-test-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

monai-test-data

test repository for storing networks and their forward data to ensure consistency

How to create a new test

from monai.networks.nets import UNet
unet_params = {
    "dimensions" : 3,
    "in_channels" : 4,
    "out_channels" : 2,
    "channels":(4, 8, 16, 32),
    "strides":(2, 4, 1),
    "kernel_size" : 5,
    "up_kernel_size" : 3,
    "num_res_units":2,
    "act":"relu",
    "dropout":0.1,
}
    in_size = (1, unet_params["in_channels"], 64, 64, 64)
    create_model_test_data(UNet, unet_params, in_size, "unet_0")

About

test repository for storing networks and their forward data to ensure consistency

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0