|
|
|
|
|
by gamegoblin
4184 days ago
|
|
As far as state-of-the-art classification goes, this is not terribly impressive. See the recent results in something like: http://cs.stanford.edu/people/karpathy/deepimagesent/ I think the impressive thing here is that the GPU is presumably doing GIANT matrix multiplications in real time. A prediction from a neural net is just a series of matrix multiplications, and matrix multiplications are about n^2.8 in complexity, so you can see how matrix multiplications with thousands of rows/columns (often what these sorts of deep image classifiers involve) are hugely computationally expensive. So it's definitely important for real time machine learning systems to have access to this kind of linear algebra power, but the actual machine learning techniques demonstrated are not super impressive. The hardware is. Which makes sense since this is an Nvidia demo. |
|