美文网首页我爱编程
深度学习环境下一些有用的链接

深度学习环境下一些有用的链接

作者: 星海之眸 | 来源:发表于2018-04-16 16:29 被阅读48次

    Useful Links

    About system

    初始安装系统的一些主要链接

    Ubuntu 16.04

    1. 系统美化
    2. 输入法的安装
    3. wechat安装
    4. matlab安装

    ubuntu下matlab启动报错java.lang.runtime.Exception**********************, 则执行这个命令:

    sudo chmod -R a+rw ~/.matlab

    About Machine Learning

    1. tensorflow
      主要尽量配置cuda8以及对应的cudnn6 2017/11/16
    2. tflearn

    Demo Links

    主要在配置GPU版本的tensorflow可能会遇到一些麻烦.下面基于配置给予相关链接

    属性
    系统 Ubuntu 16.04
    GPU 1080p
    cuda 8.0
    libcudnn 6.0

    其中显卡驱动程序使用NVIDIA-Linux-x86_64-375.26,直接从官网下载.

    cuda使用与375对应的版本,名为NVIDIA-Linux-x86_64-375.26,可以从这里下载

    对应的cudnn版本为6,版本名为libcudnn6_6.0.21-1+cuda8.0_amd64,通过这里安装.

    下一步就比较easy了,通过下面方式安装tensorflow以及tflearn:

    sudo pip3 install tensorflow-gpu   # for python3
    sudo pip install tensorflow        # for python2
    sudo pip install tflearn           # for python3
    sudo pip3 install tflearn          # for python2
    

    安装mxnet

    sudo pip3 install mxnet-cu80==1.0.0
    

    About Academic

    1. semanticscholar
    2. 学术会议影响排名
    3. 查询英语语法

    About 3D

    1. 坐标系旋转变换
    2. 相机投影

    Aoubt Python in Windows

    1. Python 预编译好的各种库(.whl)

    About Tensorflow

    Tensorflow的数据读取

    具体可以参考链接1, 中文版的链接2,英文版的,两者各有千秋,建议都要阅读一下.

    相关文章

      网友评论

        本文标题:深度学习环境下一些有用的链接

        本文链接:https://www.haomeiwen.com/subject/znyekftx.html