Skip to content

Commit

Permalink
synthia unet18
Browse files Browse the repository at this point in the history
  • Loading branch information
chrischoy committed Feb 3, 2020
1 parent f526c2a commit 6bb34fb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ python -m lib.datasets.preprocessing.stanford
| Mink16UNet34C | ScanNet train | 2cm | 5 | Val 72.219% mIoU, no rotation average, no sliding window [per class performance](https://github.com/chrischoy/SpatioTemporalSegmentation/issues/13) | [download](https://node1.chrischoy.org/data/publications/minknet/MinkUNet34C-train-conv1-5.pth) |
| Mink16UNet18 | Stanford Area5 train | 5cm | 5 | Area 5 test 65.828% mIoU, no rotation average, no sliding window [per class performance](https://pastebin.com/Gj3PrPFr) | [download](https://node1.chrischoy.org/data/publications/minknet/Mink16UNet18-stanford-conv1-5.pth) |
| Mink16UNet34 | Stanford Area5 train | 5cm | 5 | Area 5 test 66.348% mIoU, no rotation average, no sliding window [per class performance](https://pastebin.com/WzhfGMQG) | [download](https://node1.chrischoy.org/data/publications/minknet/Mink16UNet34-stanford-conv1-5.pth) |
| 3D Mink16UNet14A | Synthia CVPR19 train | 15cm | 3 | CVPR19 test wo elastic distortion 81.903% mIoU, no rotation average, no sliding window [per class performance](https://pastebin.com/hN88iQqa) | [download](https://node1.chrischoy.org/data/publications/minknet/Mink16UNet14A-synthia-conv1-3.pth) |
| 3D Mink16UNet14A | Synthia CVPR19 train | 15cm | 3 | CVPR19 test 81.903% mIoU, no rotation average, no sliding window [per class performance](https://pastebin.com/hN88iQqa) | [download](https://node1.chrischoy.org/data/publications/minknet/Mink16UNet14A-synthia-conv1-3.pth) |
| 3D Mink16UNet18 | Synthia CVPR19 train | 15cm | 3 | CVPR19 test 82.762% mIoU, no rotation average, no sliding window [per class performance](https://pastebin.com/zvt0yLFV) | [download](https://node1.chrischoy.org/data/publications/minknet/Mink16UNet18-synthia-conv1-3.pth) |


Note that sliding window style evaluation (cropping and stitching results) used in many related works effectively works as an ensemble (rotation averaging) which boosts the performance.
Expand Down Expand Up @@ -170,3 +171,8 @@ If you use the Minkowski Engine, please cite:
year={2019}
}
```

## Related projects

- [Minkowski Engine, a neural network library for sparse tensors](https://github.com/StanfordVL/MinkowskiEngine)
- [Fully Convolutional Geometric Features, ICCV'19, fast and accurate 3D features](https://github.com/chrischoy/FCGF)
4 changes: 4 additions & 0 deletions lib/datasets/synthia.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,10 @@ def _transform(xyz, intrinsic, extrinsic):
return ptc, center


class SynthiaCVPR5cmVoxelizationDataset(SynthiaVoxelizationDataset):
VOXEL_SIZE = 5


class SynthiaCVPR10cmVoxelizationDataset(SynthiaVoxelizationDataset):
VOXEL_SIZE = 10

Expand Down

0 comments on commit 6bb34fb

Please sign in to comment.