Tutorials, assignments, and competitions for MIT Deep Learning related courses.
-
Updated
Dec 29, 2019 - Jupyter Notebook
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Pytorch implementation of convolutional neural network visualization techniques
When attempting to download cityscapes_2048x1024 I got: ./download-models.sh: line 721: download_fcn_resnet18_cityscapes_2048x512: command not found
It looks like there was a typo, and line 721 needs to be changed from:
download_fcn_resnet18_cityscapes_2048x512 to download_fcn_resnet18_cityscapes_2048x1024
Thanks for the amazing repo!
I trained > 100k, the loss looks fine, the bounding box looks too much, but the mask looks very wrong. Is it the visualization bug or we need more training?
A pytorch implementation of Detectron. Both training from scratch and inferring directly from pretrained Detectron weights are available.
PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation
In file binary segmentation (camvid).ipynb, block 5, there is:
# Lets look at data we have
dataset = Dataset(x_train_dir, y_train_dir, classes=['car', 'pedestrian'])
image, mask = dataset[5] # get some sample
visualize(
image=image,
cars_mask=mask[..., 0].squeeze(),
sky_mask=mask[..., 1].squeeze(),
background_mask=mask[..., 2].squeeze(),
)
here, sky_mask
Semantic Segmentation Suite in TensorFlow. Implement, train, and test new Semantic Segmentation models easily!
Description
In some rare cases, for example, when you need to finetune a large model on a small dataset the majoring part of training loop is waiting for saving model checkpoints to a hard drive.
Proposal
Would be logically to add a CheckpointCallback with parameter save_n_best=0 to a configuration and do not store best checkpoints and instead use the latest state of the model.
Segmentation models with pretrained backbones. PyTorch.
In 'pointnet2/scannet/preprocessing/collect_scannet_scenes.py' line #17, we refer to 'scannet_all.txt' file. It would be helpful if you guide where to get or how to generate this file?
Pytorch v1.1 (which we now use) comes with an official TensorBoard integration.
We should remove our custom logging and chart plotting and move to TensorBoard.
Sandbox for training convolutional networks for computer vision
Collection of papers, datasets, code and other resources for object tracking and detection using deep learning
Unsupervised Word Segmentation for Neural Machine Translation and Text Generation
Awesome GAN for Medical Imaging
Caffe models (including classification, detection and segmentation) and deploy files for famouse networks
I am not clear about what the iteration means. Could you explain more about it? Also, how is it related to epoch?
Thanks.
Tensorflow implementation of Fully Convolutional Networks for Semantic Segmentation (http://fcn.berkeleyvision.org)
This is an official implementation of semantic segmentation for our TPAMI paper "Deep High-Resolution Representation Learning for Visual Recognition". https://arxiv.org/abs/1908.07919
An Implementation of Fully Convolutional Networks in Tensorflow.
Paper and implementation of UNet-related model.
PointCNN: Convolution On X-Transformed Points (NeurIPS 2018)
Multi-platform, free open source software for visualization and image computing.
A Kitti Road Segmentation model implemented in tensorflow.
Convolutional Neural Network for 3D meshes in PyTorch
CCNet: Criss-Cross Attention for Semantic Segmentation (ICCV 2019).
Add a description, image, and links to the segmentation topic page so that developers can more easily learn about it.
To associate your repository with the segmentation topic, visit your repo's landing page and select "manage topics."