本文主要是介绍[deeplearning-009]mxnet深度学习框架安装和试用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. 官网
http://mxnet.incubator.apache.org/
https://github.com/apache/incubator-mxnet
2. tutoria
http://mxnet.incubator.apache.org/tutorials/index.html
3. python tutorial
3.1 mxnet有两种接口:Gluon APIs和Module APIs。前者是为了便于使用。后者,a module is a machine which can execute a program defined by a Symbol。
3.2 Gluon APIs的全面教程,从深度学习讲起,然后到各种应用。
https://gluon.mxnet.io/
3.3 一个小时学会Gluon
https://gluon-crash-course.mxnet.io/
4. 安装
4.1 参考文档
http://mxnet.incubator.apache.org/install/index.html?platform=Linux&language=Python&processor=CPU
4.2 操作系统 ubuntu 16.04
4.3 安装命令
pyenv global anaconda3-4.2.0
pip install mxnet
pip install graphviz
4.4 测试
-------
import mxnet as mx
a = mx.nd.ones((2, 3))
b = a * 2 + 1
b.asnumpy()
-------
5.一个完整
这篇关于[deeplearning-009]mxnet深度学习框架安装和试用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!