Dr. Sven Steffen Becker
Dr. Sven Steffen Becker
Currently, downloaded tiles are implicitely converted to RGB images. https://github.com/geopandas/contextily/blob/37ac810a6f159be64855585c6fcab63a6f681673/contextily/tile.py#L305 However, since leaflet-providers supports maps with decomposed map and overlay labels, the maps with only labels need to be opened...
Currently, only the 3D reading and writing is implemented (e.g. MRI, CT), similiar to the dmcqi project. In my opinion, this covers the most common use case for e.g. image...
`SurfaceSegmentationStorage` is a special type of segmentation where the segments are represented by polygonal meshes instead of voxel-based annotation. https://dicom.innolitics.com/ciods/surface-segmentation A conversion script could read a `SurfaceSegmentationStorage` DICOM and write...
Fixes #119. - Adds all relevant states to the checkpoint file. - Saves an additional "last.pt" file after each epoch. - Fixes state loading.
The resume mechanism is broken and results in multiple errors: - Weight names do not match - Important states are not saved (AMP scaler, scheduler, ...) - Only the best...
When using nested hooks, mamba executes the whole stack of hooks instead of only the hooks in the current scope. See the MWE for more details. This problem is also...
I am currently experimenting with mamba for testing a flask application. However, I encountered a weired bug during test writing. When the app instance is imported directly into the spec...
**Is your feature request related to a problem? Please describe.** Large input volumes have to be processed via a sliding window algorithm, otherwise OOMs can happen quickly. There are two...
**Describe the bug** DynUNet crashes in a `torch.nn.DataParallel` scenario, since a mutable list is used to get the supervision heads. https://github.com/Project-MONAI/MONAI/blob/5f344cc4c0dc884e1a8273a9073346dc1703f85d/monai/networks/nets/dynunet.py#L212-L219 https://github.com/Project-MONAI/MONAI/blob/5f344cc4c0dc884e1a8273a9073346dc1703f85d/monai/networks/nets/dynunet.py#L51 This does not work for multiple GPUs in...
Hi, I am still getting used to the library, but was able to isolate an unexpected performance hit. I want to update just a subregion of a pre-allocated 1D tensor....