CNN Demo LIU Pengpeng.

Slides:



Advertisements
Similar presentations
Example: ZIP Code Recognition Classification of handwritten numerals.
Advertisements

From Machine Learning to Deep Learning. Topics that I will Cover (subject to some minor adjustment) Week 2: Introduction to Deep Learning Week 3: Logistic.
Dr. Z. R. Ghassabi Spring 2015 Deep learning for Human action Recognition 1.
Feedforward semantic segmentation with zoom-out features
Tofik AliPartha Pratim Roy Department of Computer Science and Engineering Indian Institute of Technology Roorkee CVIP-WM 2017 Paper ID 172 Word Spotting.
Big data classification using neural network
Convolutional Neural Network
Deep Neural Net Scenery Generation
Automatic Lung Cancer Diagnosis from CT Scans (Week 2)
Why it is Called Tensor Flow Parallelism in ANNs Project Ideas and Discussion Glenn Fung Presents Batch Renormalizating Paper.
DeepCount Mark Lenson.
Convolutional Neural Fabrics by Shreyas Saxena, Jakob Verbeek
Textual Video Prediction Week 2
Automatic Lung Cancer Diagnosis from CT Scans (Week 4)
Applications of Deep Learning and how to get started with implementation of deep learning Presentation By : Manaswi Advisor : Dr.Chinmay.
Generative Adversarial Networks
Liang Lin, Shuicheng Yan
Part-Based Room Categorization for Household Service Robots
Project 7: Modeling Social Network Structures and their Dynamic Evolutions with User- Generated Data from IoT REU Student: Emma Ambrosini Graduate mentors:
Deep Learning with TensorFlow online Training at GoLogica Technologies
Efficient Deep Model for Monocular Road Segmentation
Reinforcement learning with unsupervised auxiliary tasks
Unsupervised Learning and Autoencoders
Deep Learning Workshop
AI in Cyber-security: Examples of Algorithms & Techniques
CS6890 Deep Learning Weizhen Cai
R-CNN region By Ilia Iofedov 11/11/2018 BGU, DNN course 2016.
iPhone X and Deep Learning in Wound Assessment
Adversarially Tuned Scene Generation
State-of-the-art face recognition systems
FUNDAMENTALS OF MACHINE LEARNING AND DEEP LEARNING
Basic Intro Tutorial on Machine Learning and Data Mining
By: Kevin Yu Ph.D. in Computer Engineering
Computer Vision James Hays
So What Do We Need To Do? Find a Useful Theory of Networking
Project 7: Modeling Social Network Structures and their Dynamic Evolutions with User- Generated Data from IoT REU Student: Emma Ambrosini Graduate mentors:
Neural network systems
PixelGAN Autoencoders
A Comparative Study of Convolutional Neural Network Models with Rosenblatt’s Brain Model Abu Kamruzzaman, Atik Khatri , Milind Ikke, Damiano Mastrandrea,
Deep Learning Tutorial
Project # 5 Generating Privacy and Security Threat Summary for Internet of Things REU student: Domonique Cox Graduate mentors: Kaiqiang Song Faculty mentor(s):
ECE 599/692 – Deep Learning Lecture 1 - Introduction
Introduction to Deep Learning with Keras
Object Detection + Deep Learning
Project 7: Modeling Social Network Structures and their Dynamic Evolutions with User- Generated Data from IoT REU Student: Emma Ambrosini Graduate mentors:
INTRODUCTION.
Generative Adversarial Network
Image to Image Translation using GANs
Classification Boundaries
Recurrent Encoder-Decoder Networks for Time-Varying Dense Predictions
Lip movement Synthesis from Text
Analysis of Trained CNN (Receptive Field & Weights of Network)
RCNN, Fast-RCNN, Faster-RCNN
Coding neural networks: A gentle Introduction to keras
View Inter-Prediction GAN: Unsupervised Representation Learning for 3D Shapes by Learning Global Shape Memories to Support Local View Predictions 1,2 1.
Speakers: Luo Mai, Jingqing Zhang
Attack and defense on learning-based security system
Zhedong Zheng, Liang Zheng and Yi Yang
The 9 Deep Learning Papers You Need To Know About (Understanding CNNs Part 3) Fait un tour historique du domaine: quels articles/travaux ont été marquants.
Textual Video Prediction
Convolutional Neural Network
TPGAN overview.
CSC 578 Neural Networks and Deep Learning
Machine learning CS 229 / stats 229
Image Processing and Multi-domain Translation
Object Detection Implementations
Deep Structured Scene Parsing by Learning with Image Descriptions
Jiahe Li
CRCV REU 2019 Aaron Honculada.
The experiment based on hier-attention
Presentation transcript:

CNN Demo LIU Pengpeng

Classification A simple model on MNIST dataset Tutorial: https://www.tensorflow.org/get_started/mnist/pros Code: https://github.com/tensorflow/tensorflow/blob/r1.3/tensorflow/examples/tutorials/mnist/mnist_deep .py A template for constructing larger and sophisticated models Tutorial: https://www.tensorflow.org/tutorials/deep_cnn Code: https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10/ More examples https://github.com/tensorflow/models Slim is very convenient: https://github.com/tensorflow/models/tree/master/research/slim

Pixel-wise Classification Fully convolutional network (FCN) Paper: Fully Convolutional Networks for Semantic Segmentation Code: https://github.com/shekkizh/FCN.tensorflow

Regression Depth Prediction with FCNs Code: https://github.com/iro-cp/FCRN-DepthPrediction

Deep Reinforcement Learning Using Deep Q-Network to Learn How To Play Flappy Bird Code: https://github.com/yenchenlin/DeepLearningFlappyBird

Style Transfer Neural style transfer Paper: A Neural Algorithm of Artistic Style Code: https://github.com/anishathalye/neural-style

Generative Adversarial Networks (GANs) Deep Convolutional Generative Adversarial Network (DCGAN) Paper: Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks Code: https://github.com/carpedm20/DCGAN-tensorflow (a very good template)