- 博客(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
242
翻译 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
587
原创 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
55573
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
1929
原创 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
3591
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人