Git Product home page Git Product logo

ai-club's Introduction

AI-Club

怎样选择合适的开发平台

How to Choose a AI Dev Platform

怎样搭建开发环境

MAC

  1. 安装 miniconda

  2. Conda 环境

    • 最简单的
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --set show_channel_urls yes
    conda env create --file ./aiclub_mac.yaml
    source activate aiclub
    • 或者
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --set show_channel_urls yes
    conda create -n aiclub python=3.6
    source activate aiclub
    conda install pandas scikit-learn scikit-image scipy matplotlib sympy jupyter nb_conda -y
    pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.4.0-py3-none-any.whl
    pip install tflearn
jupyter notebook --ip='*' --NotebookApp.token= --port=8888
  1. OK

Windows

  1. 安装 miniconda

  2. Conda 环境

    • 直接导入GPU版本
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --set show_channel_urls yes
    conda env create --file ./aiclub_win_gpu.yaml
    source activate aiclub
    • 或者直接导入CPU版本
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --set show_channel_urls yes
    conda env create --file ./aiclub_win_cpu.yaml
    source activate aiclub
    • 当然从头自己装也行
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --set show_channel_urls yes
    conda create -n aiclub python=3.6
    activate aiclub
    conda install pandas scikit-learn scikit-image scipy matplotlib sympy jupyter nb_conda -y

    下边CPU版本或是GPU版本只需要安装一个,GPU需要Windows安装好CUDA Toolkits并且安装好CUDNN

    1. GPU版本
    pip install --ignore-installed --upgrade tensorflow-gpu
    pip install tflearn
    1. CPU版本
    pip install --ignore-installed --upgrade tensorflow
    pip install tflearn
jupyter notebook --ip='*' --NotebookApp.token= --port=8888
  1. OK

ai-club's People

Contributors

hooyao avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.