python常用机器学习框架(torch、paddlepaddle、MindSpore)的安装方法

安装 tensorflow

# cpu版
    pip install tensorflow==1.14.0  -i https://mirrors.aliyun.com/pypi/simple/
# gpu版
    pip install tensorflow-gpu==1.14.0  -i https://mirrors.aliyun.com/pypi/simple/
# 验证
    python -c "import tensorflow;print(tensorflow.__version__)"

安装 keras

pip install keras==2.2.4 -i https://mirrors.aliyun.com/pypi/simple/
    python -c "import keras;print(keras.__version__)"

安装 torch

torch==1.7.1
# cpu版本
    pip install --no-cache-dir \
            --timeout=100 \
            torch==1.7.1+cpu \
            torchvision==0.8.2+cpu \
            torchaudio==0.7.2 \
            -f https://download.pytorch.org/whl/torch_stable.html \
            -i https://mirrors.aliyun.com/pypi/simple/ \
# gpu版
    conda install pytorch==1.7.1 torchvision==0.8.2 torchaudio==0.7.2 cudatoolkit=10.1 -c pytorch
# 验证
     python -c "import torch;print(torch.__version__)"

安装 caffe

#cpu版:
    conda install -c defaults caffe
# gpu版:
    conda install -c defaults caffe-gpu
# 验证
   python -c "import caffe;print(caffe.__version__)"

安装 paddlepaddle

# cpu版
    pip install paddlepaddle==2.0.1  -i https://mirror.baidu.com/pypi/simple
# gpu版
    python -m pip install paddlepaddle-gpu==2.0.1.post101 \
                -f https://paddlepaddle.org.cn/whl/mkl/stable.html \
                 -i https://mirror.baidu.com/pypi/simple
    python -c "import paddle;print(paddle.__version__)"

安装 MindSpore

# cpu
    mamba install mindspore-cpu=1.5.0 -c mindspore -c conda-forge
# gpu
    conda install mindspore-gpu=1.5.0 cudatoolkit=10.1 -c mindspore -c conda-forge
# 验证
    python -c "import mindspore;mindspore.run_check()"
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值