All Projects → ELEKTRONN → Elektronn3

ELEKTRONN / Elektronn3

Licence: mit
A PyTorch-based library for working with 3D and 2D convolutional neural networks, with focus on semantic segmentation of volumetric biomedical image data

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Elektronn3

Ynet
Y-Net: Joint Segmentation and Classification for Diagnosis of Breast Biopsy Images
Stars: ✭ 100 (+28.21%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Chainer Pspnet
PSPNet in Chainer
Stars: ✭ 76 (-2.56%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Self Driving Golf Cart
Be Driven 🚘
Stars: ✭ 147 (+88.46%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
3dunet abdomen cascade
Stars: ✭ 91 (+16.67%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Vnet.pytorch
A PyTorch implementation for V-Net: Fully Convolutional Neural Networks for Volumetric Medical Image Segmentation
Stars: ✭ 506 (+548.72%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Bonnet
Bonnet: An Open-Source Training and Deployment Framework for Semantic Segmentation in Robotics.
Stars: ✭ 274 (+251.28%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Geospatial Machine Learning
A curated list of resources focused on Machine Learning in Geospatial Data Science.
Stars: ✭ 289 (+270.51%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Bcdu Net
BCDU-Net : Medical Image Segmentation
Stars: ✭ 314 (+302.56%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Espnet
ESPNet: Efficient Spatial Pyramid of Dilated Convolutions for Semantic Segmentation
Stars: ✭ 473 (+506.41%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Espnetv2
A light-weight, power efficient, and general purpose convolutional neural network
Stars: ✭ 377 (+383.33%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Minkowskiengine
Minkowski Engine is an auto-diff neural network library for high-dimensional sparse tensors
Stars: ✭ 1,110 (+1323.08%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Mtlnas
[CVPR 2020] MTL-NAS: Task-Agnostic Neural Architecture Search towards General-Purpose Multi-Task Learning
Stars: ✭ 58 (-25.64%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Espnetv2 Coreml
Semantic segmentation on iPhone using ESPNetv2
Stars: ✭ 66 (-15.38%)
Mutual labels:  convolutional-neural-networks, semantic-segmentation
Graph 2d cnn
Code and data for the paper 'Classifying Graphs as Images with Convolutional Neural Networks' (new title: 'Graph Classification with 2D Convolutional Neural Networks')
Stars: ✭ 67 (-14.1%)
Mutual labels:  convolutional-neural-networks
Dcm Net
This work is based on our paper "DualConvMesh-Net: Joint Geodesic and Euclidean Convolutions on 3D Meshes", which appeared at the IEEE Conference On Computer Vision And Pattern Recognition (CVPR) 2020.
Stars: ✭ 75 (-3.85%)
Mutual labels:  semantic-segmentation
Multiclass Semantic Segmentation Camvid
Tensorflow 2 implementation of complete pipeline for multiclass image semantic segmentation using UNet, SegNet and FCN32 architectures on Cambridge-driving Labeled Video Database (CamVid) dataset.
Stars: ✭ 67 (-14.1%)
Mutual labels:  semantic-segmentation
Deep Plant
Deep-Plant: Plant Classification with CNN/RNN. It consists of CAFFE/Tensorflow implementation of our PR-17, TIP-18 (HGO-CNN & PlantStructNet) and MalayaKew dataset.
Stars: ✭ 66 (-15.38%)
Mutual labels:  convolutional-neural-networks
Rethinking Network Pruning
Rethinking the Value of Network Pruning (Pytorch) (ICLR 2019)
Stars: ✭ 1,197 (+1434.62%)
Mutual labels:  convolutional-neural-networks
Quicknat pytorch
PyTorch Implementation of QuickNAT and Bayesian QuickNAT, a fast brain MRI segmentation framework with segmentation Quality control using structure-wise uncertainty
Stars: ✭ 74 (-5.13%)
Mutual labels:  convolutional-neural-networks
Sketchcnn
Robust freeform surface modeling from user 2d sketches.
Stars: ✭ 66 (-15.38%)
Mutual labels:  convolutional-neural-networks

Read the Docs

elektronn3

A PyTorch-based library for working with 3D and 2D convolutional neural networks, with focus on semantic segmentation of volumetric biomedical image data.

Quick overview of elektronn3's code structure:

  • elektronn3.training: Utilities for training, monitoring, visualization and model evaluation. Provides a flexible Trainer class that can be used for arbitrary PyTorch models and Data sets.
  • elektronn3.data: Data loading and augmentation code for semantic segmentation and other dense prediction tasks. The main focus is on 3D (volumetric) biomedical image data stored as HDF5 files, but most of the code also supports 2D and n-dimensional data.
  • elektronn3.inference: Code for deployment of trained models and for efficient tiled inference on large input volumes.
  • elektronn3.models: Neural network architectures for segmentation and other pixel-wise prediction tasks. models.unet.UNet provides a highly flexible PyTorch model class inspired by 3D U-Net that works in 2D and 3D and supports custom depths, data anisotropy handling, batch normalization and many more configurable features.
  • elektronn3.modules: Modules (in the sense of torch.nn.Module) for building neural networks and loss functions.
  • examples: Scripts that demonstrate how the library can be used for biomedical image segmentation.

elektronn3's modular codebase makes it easy to extend/replace parts of it with your own code: For example, you can use the training tools included in elektronn3.training with your own data sets, augmentation methods, network models etc. or use the data loading and augmentation code of elektronn3.data with your own training code. The neural network architectures in elektronn3.models can also be freely used with custom training and/or data loading code.

Documentation can be found at elektronn3.readthedocs.io.

For a roadmap of planned features, see the "enhancement" issues on the tracker.

Requirements

  • Linux (support for Windows, MacOS and other systems is not planned)
  • Python 3.6 or later
  • PyTorch 1.5 or later (earlier versions may work, but are untested)
  • For other requirements see requirements.txt

Setup

Ensure that all of the requirements listed above are installed. We recommend using conda or a virtualenv for that. To install elektronn3 in development mode, run

git clone https://github.com/ELEKTRONN/elektronn3 elektronn3-dev
pip install -e elektronn3-dev

To update your installation, just git pull in your clone directory.

If you are not familiar with virtualenv and conda or are not sure about some of the required steps, you can find a more detailed setup guide here

Training

For a quick test run, first ensure that the neuro_data_cdhw data set is in the expected path:

wget https://github.com/ELEKTRONN/elektronn.github.io/releases/download/neuro_data_cdhw/neuro_data_cdhw.zip
unzip neuro_data_cdhw.zip -d ~/neuro_data_cdhw

To test training with our custom U-Net-inspired architecture in elektronn3, you can run:

python3 train_unet_neurodata.py

Using Tensorboard

Tensorboard logs are saved in ~/e3training/ by default, so you can track training progress by running a tensorboard server there:

tensorboard --logdir ~/e3training/

Then you can view the visualizations at http://localhost:6006.

Contributors

The elektronn3 project is being developed by the ELEKTRONN team. Jörgen Kornfeld is academic advisor to this project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].