Neural networks

From Wiki2
Revision as of 14:35, 13 December 2016 by Tim (talk | contribs)

<markdown>

  1. neural networks
    1. refs
    1. setup
   $ mkdir p3test
   $ cd p3test/
   $ virtualenv -p /c/Users/tim/Anaconda3/python.exe venv 
   //for python 3.5 or  /c/Python27/python.exe for version2.7
   tim@TIM-HP /c/wamp/www/python/p3test (master)
   $ source venv/Scripts/activate

prove its working

   $ python
   Python 3.5.2 |Continuum Analytics, Inc.| (default, Jul  5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)] on win32
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import tensorflow as tf
   >>> sess=tf.Session()
   >>> answer - tf.matmul([[7,], [6,]])




</markdown>