Neural network systems

Slides:



Advertisements
Similar presentations
Object detection, deep learning, and R-CNNs
Advertisements

Fully Convolutional Networks for Semantic Segmentation
Ross Girshick, Jeff Donahue, Trevor Darrell, Jitendra Malik Rich Feature Hierarchies for Accurate Object Detection and Semantic Segmentation.
Rich feature hierarchies for accurate object detection and semantic segmentation 2014 IEEE Conference on Computer Vision and Pattern Recognition Ross Girshick,
Comparing TensorFlow Deep Learning Performance Using CPUs, GPUs, Local PCs and Cloud Pace University, Research Day, May 5, 2017 John Lawrence, Jonas Malmsten,
Course Outline (6 Weeks) for Professor K.H Wong
When deep learning meets object detection: Introduction to two technologies: SSD and YOLO Wenchi Ma.
Recent developments in object detection
CNN-RNN: A Unified Framework for Multi-label Image Classification
Faster R-CNN – Concepts
Big Data A Quick Review on Analytical Tools
DeepCount Mark Lenson.
Deep Learning Insights and Open-ended Questions
Combining CNN with RNN for scene labeling (segmentation)
YOLO9000:Better, Faster, Stronger
Deep Learning Fundamentals online Training at GoLogica
Deep Learning with TensorFlow online Training at GoLogica Technologies
Synthesis of X-ray Projections via Deep Learning
A VERY Brief Introduction to Convolutional Neural Network using TensorFlow 李 弘
Comparison Between Deep Learning Packages
Deep Learning Workshop
Machine Learning: The Connectionist
Project Implementation for ITCS4122
ECE 599/692 – Deep Learning Lecture 6 – CNN: The Variants
Introduction to Deep Learning for neuronal data analyses
Layer-wise Performance Bottleneck Analysis of Deep Neural Networks
So What Do We Need To Do? Find a Useful Theory of Networking
Visual Question Generation
Introduction to Neural Networks
A Comparative Study of Convolutional Neural Network Models with Rosenblatt’s Brain Model Abu Kamruzzaman, Atik Khatri , Milind Ikke, Damiano Mastrandrea,
Deep Learning Tutorial
Counting in Dense Crowds using Deep Learning
Introduction to Deep Learning with Keras
Object Detection + Deep Learning
SAS Deep Learning Object Detection, Keypoint Detection
SAS Deep Learning: From Toolkit to Fast Model Prototyping
Hairong Qi, Gonzalez Family Professor
Smart Robots, Drones, IoT
Understanding LSTM Networks
The Big Health Data–Intelligent Machine Paradox
Long Short Term Memory within Recurrent Neural Networks
Visualizing CNNs and Deeper Deep Architectures
YOLO-LITE: A Real-Time Object Detection Web Implementation
Outline Background Motivation Proposed Model Experimental Results
Recurrent Encoder-Decoder Networks for Time-Varying Dense Predictions
Object Tracking: Comparison of
RCNN, Fast-RCNN, Faster-RCNN
Martin Schrimpf & Jon Gauthier MIT BCS Peer Lectures
Presentation By: Eryk Helenowski PURE Mentor: Vincent Bindschaedler
Neural Network Pipeline CONTACT & ACKNOWLEDGEMENTS
Heterogeneous convolutional neural networks for visual recognition
Course Recap and What’s Next?
Deep Learning Authors: Yann LeCun, Yoshua Bengio, Geoffrey Hinton
Automatic Handwriting Generation
Ch. 9: Introduction to Convolution Neural Networks CNN and systems
Ch. 10: Introduction to Convolution Neural Networks CNN and systems
Action Recognition.
CS295: Modern Systems: Application Case Study Neural Network Accelerator Sang-Woo Jun Spring 2019 Many slides adapted from Hyoukjun Kwon‘s Gatech “Designing.
Neural Machine Translation using CNN
The experiments based on Recurrent Neural Networks
Object Detection Implementations
Weeks 1 and 2 Aaron Ott.
Debasis Bhattacharya, JD, DBA University of Hawaii Maui College
CRCV REU 2019 Kara Schatz.
Jiahe Li
Bidirectional LSTM-CRF Models for Sequence Tagging
Real-time Object Recognition using deep learning-Raspberry Pi
YOLO-based Object Detection on ARM Mali GPU
CRCV REU 2019 Aaron Honculada.
ICLR, 2019 Jiahe Li
Presentation transcript:

Neural network systems KH Wong Neural network systems v.8a

Neural network systems v.8a Introduction Neural network main approaches and techniques Neural network research teams Neural network research problems and systems Neural network systems v.8a

Neural network main approaches and techniques Basic model Learning by Back propagation CNN (convolution neural network) RNN (recurrent neural network) LSTM (long short term memory) Neural network systems v.8a

Neural network research teams Vector Institute (G. Hinton) https://vectorinstitute.ai/team/geoffrey-hinton/ Google Baidu Neural network systems v.8a

Neural network systems v.8a CNN Architectures: LeNet, AlexNet, VGG, Visual Geometry Group GoogLeNet, ResNet Neural network systems v.8a

Neural network systems v.8a Neural network tools Tensorflow Keras: The Python Deep Learning library  Microsoft CNTK Caffé Theano Amazon Machine Learning Torch   Brainstorm http://www.it4nextgen.com/best-artificial-intelligence-frameworks/ Neural network systems v.8a

Introduction-A study of popular neural network systems CNN based CNN (convolution neural network) (or LeNet ) 1998 https://en.wikipedia.org/wiki/Convolutional_neural_network GoogleNet/Inception(2014) https://www.cs.unc.edu/~wliu/papers/GoogLeNet.pdf FCN (Fully Convolution neural networks) 2015 https://people.eecs.berkeley.edu/~jonlong/long_shelhamer_fcn.pdf VGG VERY DEEP CONVOLUTIONAL NETWORKS 2014 https://arxiv.org/pdf/1409.1556.pdf ResNet https://en.wikipedia.org/wiki/Residual_neural_network 2015 Alexnet https://en.wikipedia.org/wiki/AlexNet 2012 (R-CNN) Region-based Convolutional Network by J.R.R. Uijlings and al. (2012) RNN based LSTM(-RNN) (long short term memory-RNN) 1997 https://en.wikipedia.org/wiki/Long_short-term_memory Sequence to sequence approach https://papers.nips.cc/paper/5346-sequence-to-sequence-learning-with-neural-networks.pdf Neural network systems v.8a

Neural network systems v.8a Problems Object detection and recognition Dataset PASCAL Visual Object Classification (PASCAL VOC)  Common Objects in COntext (COCO)  Systems Region-based Convolutional Network (R-CNN) by J.R.R. Uijlings and al. (2012) Fast Region-based Convolutional Network (Fast R-CNN), developed by R. Girshick (2015) Faster Region-based Convolutional Network (Faster R-CNN),. S. Ren and al. (2016)  Region-based Fully Convolutional Network (R-FCN),  J. Dai and al. (2016)  You Only Look Once (YOLO) model (J. Redmon et al., 2016)) Single-Shot Detector (SSD),, W. Liu et al. (2016)  YOLO9000 and YOLOv2,. Redmon and A. Farhadi (2016)  Ahitecture Search Net (NASNet), The Neural Architecture Search (B. Zoph and Q.V. Le, 2017)  Another extension of the Faster R-CNN model has been released by K. He and al. (2017)  Object tracking Speech recognition Machine translation https://medium.com/comet-app/review-of-deep-learning-algorithms-for-object-detection-c1f3d437b852 Neural network systems v.8a