A Guide to Deep Learning
11–20 of 35 posts
Re: A Guide to Deep Learning
#12Re: A Guide to Deep Learning
#131. A purpose for utilizing it
2. A data set to train/act on
Without that, all you get are a bunch of shovels and picks, but no idea of what kind of wood/bricks you need or a plan for the house.
Re: A Guide to Deep Learning
#14Everyone's into deep learning, but what would I actually do with it? With some other field, like computer graphics, one can fairly quickly get a 3D cube spinning on their screen and know it has some relation to the special effects in the Star Wars movie they just saw. No one makes it obvious what the hobbyist can expect to do with deep learning or how it relates to the broader world.
The uses are myriad, you can build Star Wars Movies, you can build computer games. You can do CAD and 3D modelling and printing, you can visualize fluid simulations
But each is an entire field.
The same with Deep Learning -
You can do image classification for medical diagnosis. Self Driving Cars. Realtime Translation. OCR. You can model chemical reactions by doing latent space exploration. You can model gene-gene interactions. You can build a image recogniser to tell if your cat is on the couch. You can build an AI that plays GO, or any other system or game where the rewards are time-delayed and sparse. You can make it play Atari games.
You can stitch satellite images together. You can reconstruct parts of photos that are missing. You can colour black and white images. You can de-noise wind sounds from microphones. You can search for comets. You can monitor deforestation. You can count cars in car parks. You can search vast ocean areas for survivors. You can build security drones that fly around at night and look for anomalies. You can turn a webpage of unstructured text into structured query-able forms (see named entity recognition). You can create visual art (google: neural style transfer)
These are just a small drop of some of the cool things that are going on - and while it might be difficult for you to advance state of the art without a GPU cluster (just as it would be difficult to advance state of the art in Graphics programming) the hobbiest can certainly start in any of these fields, just pick one that inspires you.]
EDIT: I run a Deep Learning startup - if you want some pointers or help getting started, or would like advice don't hesitate to email me - it's in my profile :)
Re: A Guide to Deep Learning
#15The primary thing missing from all of these guides is that you need to have two things for ML: 1. A purpose for utilizing it 2. A data set to train/act on Without that, all you get are a bunch of shovels and picks, but no idea of what kind of wood/bricks you need or a plan for the house.
Re: A Guide to Deep Learning
#16The primary thing missing from all of these guides is that you need to have two things for ML: 1. A purpose for utilizing it 2. A data set to train/act on Without that, all you get are a bunch of shovels and picks, but no idea of what kind of wood/bricks you need or a plan for the house.
I will mention that you can get surprisingly far with just a little bit of labeled training data now. Transfer learning is a pretty powerful technique.
Re: A Guide to Deep Learning
#17The primary thing missing from all of these guides is that you need to have two things for ML: 1. A purpose for utilizing it 2. A data set to train/act on Without that, all you get are a bunch of shovels and picks, but no idea of what kind of wood/bricks you need or a plan for the house.
I will mention that you can get surprisingly far with just a little bit of labeled training data now. Transfer learning is a pretty powerful technique.
These of course work together in reinforcement scenarios.
So for example if you want to build a tool that tells you what kind of objects are in any given image you can use ImageNet to Train and Validate your CNN. At that point you have a classifier. But for an actual useful application you need a user to submit new images to actually give some kind of valuable output.
It's that second data set that is super hard to get - because it's novel.
Re: A Guide to Deep Learning
#18Everyone's into deep learning, but what would I actually do with it? With some other field, like computer graphics, one can fairly quickly get a 3D cube spinning on their screen and know it has some relation to the special effects in the Star Wars movie they just saw. No one makes it obvious what the hobbyist can expect to do with deep learning or how it relates to the broader world.
The next stage will be to take articles posted to the various programming language subreddits, and build a classifier that classifies articles by language or topic. I did this previously for talks based on heuristics, but this will allow for a lot more categories: https://www.findlectures.com/?p=1&class1=Technology&category...
Re: A Guide to Deep Learning
#19Everyone's into deep learning, but what would I actually do with it? With some other field, like computer graphics, one can fairly quickly get a 3D cube spinning on their screen and know it has some relation to the special effects in the Star Wars movie they just saw. No one makes it obvious what the hobbyist can expect to do with deep learning or how it relates to the broader world.
Everyones into Graphics programming, but what would I actually do with it? The uses are myriad, you can build Star Wars Movies, you can build computer games. You can do CAD and 3D modelling and printing, you can visualize fluid simulations But each is an entire field. The same with Deep Learning - You can do image classification for medical diagnosis. Self Driving Cars. Realtime Translation. OCR. You can model chemic…
Re: A Guide to Deep Learning
#20Earlier quoted context omitted.
Everyones into Graphics programming, but what would I actually do with it? The uses are myriad, you can build Star Wars Movies, you can build computer games. You can do CAD and 3D modelling and printing, you can visualize fluid simulations But each is an entire field. The same with Deep Learning - You can do image classification for medical diagnosis. Self Driving Cars. Realtime Translation. OCR. You can model chemic…
One of my partner's tasks as a legal assistant is to go through mountains of OCRed PDFs and classify them and extract pieces of data so that lawyers and paralegals can go through them more easily. Do you imagine deep learning would be an appropriate means of automating that, or is it overkill?
Imagine something like: A deep network reduces a 20 page document to a summary of 4 or 5 sentences, you can click on these sentences to "expand" them out, eventually getting to the original text. Saving them from reading the whole document
A separate classifier automatically classifies the document into one of say, 20 categories (or whatever is appropriate).
A Deep Learning named entity recogniser extracts the Human names, Dates and times, Email addresses, Company Names, email addresses, Money amounts, and numbers from each document, then off to elasticsearch for indexing and easy searching.
Then we can start to play with higher level legal concepts that (for example) set precedent, or search for certain logical fallacies. (the next step past machine learning is machine reasoning - and it's starting to be possible now)