深度学习
少游223
语音识别算法
展开
-
module 'h5py' has no attribute 'File' 解决办法
module 'h5py' has no attribute 'File'这个问题通常是由于h5py这个库的不规范造成。比如说,我是混着使用pip和conda,可能这就是使得出现这个问题的原因我的解决办法是 pip uninstall h5py conda install h5py这个问题就解决了。这个解决办法同样适用scipy库调用的问题。...原创 2018-09-12 22:04:37 · 13193 阅读 · 15 评论 -
关于pytorch图像处理模块的数据处理
文章参考:chsasank.github.iofrom __future__ import print_function, divisionimport torchimport torch.nn as nnimport torch.optim as optimfrom torch.optim import lr_schedulerimport numpy as npimport ...原创 2018-11-27 10:26:51 · 2148 阅读 · 0 评论 -
图像数据处理 pytorch
# -*- coding: utf-8 -*-"""Transfer Learning Tutorial==========================**Author**: `Sasank Chilamkurthy <https://chsasank.github.io>`_In this tutorial, you will learn how to train y...转载 2018-11-27 10:28:00 · 1992 阅读 · 0 评论 -
指定GPU
CUDA_VISIBLE_DEVICES=1转载 2018-12-15 17:12:18 · 360 阅读 · 0 评论 -
mnist的pytorch版本,简单的迭代可得到97%的概率
#本文从其他处copy过来,是为了留作参考,比如同样的分类问题,只需要修改几个关键位置,一是模型,二是损失,三是优化器import torchimport torch.nn as nnimport torchvision.datasets as dsetsimport torchvision.transforms as transformsfrom torch.autograd...原创 2019-01-25 09:38:32 · 816 阅读 · 2 评论 -
keras的例子,参照可完整实现所有代码
https://blog.csdn.net/liuxiao214/article/details/79027109后面有时间再在这总结一下keras的特点以及如何去使用。-------------------------------------先把位置占着-------------哈哈Keras分为两种不同的建模方式,Sequential models:这种方法用于实现一些简...转载 2019-01-25 10:29:09 · 1221 阅读 · 0 评论 -
在运行Loaded runtime CuDNN library: 7103 (compatibility version 7100) but source was compiled with 7003
个人分析: 我是安装在conda的py36环境下,由于升级了torch到0.4.0,就出现这个情况,所以坑定不是我的驱动或者cudnn cuda的问题,试图恢复torch的版本,也尝试了去重装tensorflow-gpu,但是没有解决,网上看了,才升级tensorflow-gpu 之前的版本是1.7.0 升级后为1.8.0 可以正常使用。...原创 2019-01-23 09:48:20 · 611 阅读 · 0 评论