Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Theano: обучаем нейросеть, Екатерина Тузова, PyCharm

Theano: обучаем нейросеть, Екатерина Тузова, PyCharm

Выступление на конференции PyCon Russia 2016

IT-People

July 25, 2016
Tweet

More Decks by IT-People

Other Decks in Programming

Transcript

  1. MNIST dataset X — images (60000, 784) Y — labels

    (60000, ) Goal: train a model to look at images and predict what digits they are.
  2. Variable in Computer Science A piece of informations stored somewhere

    in memory with a name made up by a programmer.
  3. Variable in Mathematics Indeterminate quantity that can be manipulated using

    arithmetic operations, or using calculus and so on.
  4. Quick How-To - Define symbolic expression - Compile a function

    that can compute numeric values using those expressions - Execute that function on data