Windows autoKeras的下载与安装连接

autoKeras

autoKeras GitHub:https://github.com/jhfjhfj1/autokeras

百度网盘下载地址:http://pandownload.com/

大牛博客:http://nooverfit.com/wp/

autoKeras官方文档:https://autokeras.com/

 

开始进入主题:Windows安装autoKeras

  第一步:安装autoKeras:https://github.com/jhfjhfj1/autokeras   这里是压缩包,使用 python setup.py install

  第二步:依赖于pytorch 所以需要安装 torch 

      版本对比:torch0.4-cuda9.0-python3.6 

      torch    见博客。此处需要FQhttps://pytorch.org/

      cuda9   博客 

        第三步:pip3 install torchvision

  过程中遇到的错误或许能帮助你,更新numpy到新 numpy+mke  保存可视化图片需安装:https://www.cnblogs.com/shuodehaoa/p/8667045.html

测试结果如下:

 说明成功安装能使用GPU加速。  

from keras.datasets import mnist
from autokeras.image_supervised import ImageClassifier

if __name__ == '__main__':
    (x_train, y_train), (x_test, y_test) = mnist.load_data(r'E:\xxxx\python_basics\自动深度学习\data\mnist.npz')
    x_train = x_train.reshape(x_train.shape + (1,))
    x_test = x_test.reshape(x_test.shape + (1,))

    clf = ImageClassifier(verbose=True)
    clf.fit(x_train, y_train, time_limit=1*60)
    clf.final_fit(x_train, y_train, x_test, y_test, retrain=True)
    y = clf.evaluate(x_test, y_test)
    print(y)

 

转载于:https://www.cnblogs.com/wuzaipei/p/9582503.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值