Phần 3: Tạo mạng nơ-ron đầu tiên.
Mạng nơ-ron cho mọi người (\^_^). Ai cũng có thể làm được.
Từng bước từng bước, đơn giản dễ hiểu và dĩ nhiên ko có toán ở đây.
Cài đặt thư viện
Cái Spyder ở trong cái Anaconda được cài ở phần 1.
For Windows and Linux users:
In Spyder, go to Tools and Open Anaconda Prompt. Then enter the following commands:
- Create a new environment with Anaconda and Python 3.5:
1
2 >conda create -n tensorflow python=3.5 anaconda
>
- Activate the environment:
1
2 >activate tensorflow
>
Continue reading
- After this you can install Theano, TensorFlow and Keras:
1
2
3
4
5 >conda install theano
>conda install mingw libpython
>pip install tensorflow
>pip install keras
>