All Projects → deeponcology → Applied Dl 2018

deeponcology / Applied Dl 2018

Licence: mit
Tel-Aviv Deep Learning Boot-camp: 12 Applied Deep Learning Labs

Programming Languages

python3
1442 projects

Projects that are alternatives of or similar to Applied Dl 2018

Voice Conversion Gan
Voice Conversion using Cycle GAN's For Non-Parallel Data
Stars: ✭ 82 (-43.84%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-34.25%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Deep Learning Boot Camp
A community run, 5-day PyTorch Deep Learning Bootcamp
Stars: ✭ 1,270 (+769.86%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Pneumonia Detection From Chest X Ray Images With Deep Learning
Detecting Pneumonia in Chest X-ray Images using Convolutional Neural Network and Pretrained Models
Stars: ✭ 64 (-56.16%)
Mutual labels:  jupyter-notebook, medical-imaging
Pytorchnlpbook
Code and data accompanying Natural Language Processing with PyTorch published by O'Reilly Media https://nlproc.info
Stars: ✭ 1,390 (+852.05%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Cnn Interpretability
🏥 Visualizing Convolutional Networks for MRI-based Diagnosis of Alzheimer’s Disease
Stars: ✭ 68 (-53.42%)
Mutual labels:  jupyter-notebook, medical-imaging
End To End Sequence Labeling Via Bi Directional Lstm Cnns Crf Tutorial
Tutorial for End-to-end Sequence Labeling via Bi-directional LSTM-CNNs-CRF
Stars: ✭ 87 (-40.41%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Brain Tumor Segmentation Keras
Keras implementation of the multi-channel cascaded architecture introduced in the paper "Brain Tumor Segmentation with Deep Neural Networks"
Stars: ✭ 20 (-86.3%)
Mutual labels:  jupyter-notebook, medical-imaging
Models
DLTK Model Zoo
Stars: ✭ 101 (-30.82%)
Mutual labels:  jupyter-notebook, medical-imaging
Deep Image Analogy Pytorch
Visual Attribute Transfer through Deep Image Analogy in PyTorch!
Stars: ✭ 100 (-31.51%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Vitech
tuyển chọn các tài liệu về công nghệ bằng tiếng Việt
Stars: ✭ 63 (-56.85%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Deep Histopath
A deep learning approach to predicting breast tumor proliferation scores for the TUPAC16 challenge
Stars: ✭ 132 (-9.59%)
Mutual labels:  jupyter-notebook, medical-imaging
Dl4sci Pytorch Webinar
Stars: ✭ 43 (-70.55%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Machine Learning
My Attempt(s) In The World Of ML/DL....
Stars: ✭ 78 (-46.58%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Keras Pytorch Avp Transfer Learning
We pit Keras and PyTorch against each other, showing their strengths and weaknesses in action. We present a real problem, a matter of life-and-death: distinguishing Aliens from Predators!
Stars: ✭ 42 (-71.23%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Pytorch
PyTorch tutorials A to Z
Stars: ✭ 87 (-40.41%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Machine Learning
머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고자 만든 repository입니다. (This repository is intented for helping whom are interested in machine learning study)
Stars: ✭ 705 (+382.88%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Facial Similarity With Siamese Networks In Pytorch
Implementing Siamese networks with a contrastive loss for similarity learning
Stars: ✭ 719 (+392.47%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (-33.56%)
Mutual labels:  jupyter-notebook, pytorch-tutorial
Pytorch Rl
Tutorials for reinforcement learning in PyTorch and Gym by implementing a few of the popular algorithms. [IN PROGRESS]
Stars: ✭ 121 (-17.12%)
Mutual labels:  jupyter-notebook, pytorch-tutorial

12 Applied Medical Deep Learning Labs, 2018

Author

Shlomo Kashani, Head of Deep Learning at http://DeepOncology.ai

bone

Tel Aviv Deep Learning Bootcamp : http://deep-ml.com

bone

Full schedule:

Refer to: https://www.evernote.com/shard/s341/sh/3855640e-2b0b-42e5-b5b9-00216d02ac9a/b47968226e49a81ee813901cd41d3924

Forum:

https://bayesian-ai.trydiscourse.com/categories

bone

Google Collab + PyTorch Notebooks:

Labs:

About

We are happy to introduce our full (and Free) Applied Deep course Learning curriculum for 2018. Assembling this curriculum required a lot of thought and attention, aiming at using real use cases and corresponding real data sets.

Deep learning, a sub-domain of machine learning, has lately showed amazing results across an assortment of domains. Biology and medicine are data affluent, but the data is involved and frequently ill-understood. Problems of this quality may be especially well-suited to deep learning methods. We present applications of applied deep learning to a variety of biomedical problems

In particular, we foster the use of Medical Data Sets (https://grand-challenge.org/All_Challenges/) and predominantly those available (but not only) via Kaggle.

The course consists of 12 labs from which we like to share the first 5, and most notably, the labs are geared towards those interested in practical/applied data science rather than theoretical data science. We feel there are a numerous theoretical DL courses while the practical ones are rather scarce.

In terms of DL libraries, we foster the use of Keras and PyTorch and we hope to alternate between these two in each subsequent class.

This is a provisional curriculum, which is subject to change.

Registration:

You can register, however we reserve no places, folowing a first come first serve policy.

Requirements

Data Sets in PyTorch

Keep in mind that this repository expects data to be in same format as Imagenet. I encourage you to use your own datasets. In that case you need to organize your data such that your dataset folder has EXACTLY two folders. Name these 'train' and 'val'

The 'train' folder contains training set and 'val' fodler contains validation set on which accuracy / log loss is measured.

The structure within 'train' and 'val' folders will be the same. They both contain one folder per class. All the images of that class are inside the folder named by class name; this is crucial in PyTorch.

If your dataset has 2 classes like in the Kaggle Statoil set, and you're trying to classify between pictures of 1) ships 2) Icebergs, say you name your dataset folder 'data_directory'. Then inside 'data_directory' will be 'train' and 'test'. Further, Inside 'train' will be 2 folders - 'ships', 'icebergs'.

So, the structure looks like this:

curve

|-  data_dir
       |- train 
             |- ships
                  |- ship_image_1
                  |- ship_image_2
                         .....

             |- ice
                  |- ice_image_1
                  |- ice_image_1
                         .....
       |- val
             |- ships
             |- ice

For a full example refer to: https://github.com/QuantScientist/Deep-Learning-Boot-Camp/blob/master/Kaggle-PyTorch/PyTorch-Ensembler/kdataset/seedings.py

Relevant info:

http://deep-ml.com/

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].