自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Raffet

ml dl cv

  • 博客(5)
  • 收藏
  • 关注

翻译 the first neural network by Keras

Implement the first neural network by Kerasthe Keras Sequential modelfrom keras.models import Sequentialfrom keras.layers import Dense, Activationmodel = Sequential([ Dense(32, input_sh...

2018-08-16 20:07:24 218

翻译 How to save a Keras model?

Saving/loading whole models (architecture + weights + optimizer state)use model.save(filepath) to save a Keras model into a single HDF5 file which will contain:the architecture of the model, allo...

2018-08-11 17:24:10 555 1

原创 python 将字典存储为文件

pickle methodsave a python object to a .plk filedef save_obj(obj, name ): with open('obj/'+ name + '.pkl', 'wb') as f: pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL)def load_obj(name )...

2018-08-10 23:48:42 55479 4

原创 解决conda升级后出现QOpenGLShader问题

更新包后启动spyder出现如下错误代码QOpenGLShaderProgram::uniformLocation( matrix ): shader program is not linkedQOpenGLShaderProgram::uniformLocation( opacity ): shader program is not linkedQOpenGLShaderProgra...

2018-04-10 22:41:17 1856 1

原创 Ubuntu16.04+Anaconda+Cuda9.0+cudnn7.0+Tensorflow+Pytorch 深度学习环境配置

Ubuntu16.04+Anaconda3+Cuda9.0+cudnn7.0+Tensorflow1.7+PytorchUbuntu16.04(win10双系统)下载下载地址:https://www.ubuntu.com/download/desktop安装用UltraISO制作U盘启动盘win+X,磁盘管理,压缩出至少50G空间重启进入BIOS,设置U盘启动试用Ubuntu(try Ubuntu...

2018-04-02 20:26:44 3547 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除