GPU-Accelerated Deep Learning Library in Python
1–10 of 51 posts
Re: GPU-Accelerated Deep Learning Library in Python
#2Re: GPU-Accelerated Deep Learning Library in Python
#3Serious question to those with experience in the area: is the term "Deep learning" more than a buzzword?
It is not a new idea, but it has been viable only since the last few years thanks to both computational power advances (huge clusters, GPUs, big data), and algorithmic breakthroughs (sampling algorithms, stochastic optimization, contrastive divergence, ...).
Re: GPU-Accelerated Deep Learning Library in Python
#4Re: GPU-Accelerated Deep Learning Library in Python
#5Serious question to those with experience in the area: is the term "Deep learning" more than a buzzword?
It is not a buzzword, as it describes a very specific concept: learning based on a neural network with multiple (say >= 3) hidden layers. It is not a new idea, but it has been viable only since the last few years thanks to both computational power advances (huge clusters, GPUs, big data), and algorithmic breakthroughs (sampling algorithms, stochastic optimization, contrastive divergence, ...).
Re: GPU-Accelerated Deep Learning Library in Python
#6Looks a lot like Theano [ http://deeplearning.net/software/theano/index.html ]
Re: GPU-Accelerated Deep Learning Library in Python
#7Re: GPU-Accelerated Deep Learning Library in Python
#8Re: GPU-Accelerated Deep Learning Library in Python
#9Earlier quoted context omitted.
It is not a buzzword, as it describes a very specific concept: learning based on a neural network with multiple (say >= 3) hidden layers. It is not a new idea, but it has been viable only since the last few years thanks to both computational power advances (huge clusters, GPUs, big data), and algorithmic breakthroughs (sampling algorithms, stochastic optimization, contrastive divergence, ...).
Of course, it's also a buzzword.
What I meant is that at least this has some specificity, in contrast with terms like "web scale", "big data", "machine learning", "2.0", that are so broad that can be attached to anything.
Re: GPU-Accelerated Deep Learning Library in Python
#10It also serializes the model and results to disk by default. This is great for loading up the model later on another, possibly less performant, machine and performing your classification / etc...
Of course PyLearn2 covers this feature set and more, but isn't as easy to get started with.
I'll make an effort to use this when I can, unfortunately my two current projects involve a convolutional neural net and an auto encoder. :(
TL; DR: Specifying structure using YAML instead of coding neural net. Working at a higher level than other libs such as Theano.