tensorflow
jacka03
越努力越幸运
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tf.keras搭建分类模型--识别fashion_mnist 代码
杀杀杀水水 撒D SD import matplotlib as mpl import matplotlib.pyplot as plt %matplotlib inline # jupyter notebook中使用到,pycharm中要注释掉 import numpy as np import sklearn import pandas as pd import os import sys ...原创 2020-03-11 23:57:19 · 763 阅读 · 0 评论 -
TensorFlow1.2~2.1各个GPU版本CUDA和cuDNN对应版本合集
TensorFlow版本 CUDA版本 cuDNN版本 1.2 CUDA Toolkit 8.0 cuDNN v5.1 1.3 CUDA Toolkit 8.0 cuDNN v6 or v6.1 1.4 CUDA Toolkit 8.0 cuDNN v6.1 1.5 CUDA Toolkit 9.0 cuDNN v7.0 1.6 CUDA Toolkit 9.0 c...原创 2020-03-04 17:06:09 · 6462 阅读 · 0 评论 -
Keras激活函数Activations
激活函数可以通过设置单独的激活层实现,也可以在构造层对象时通过传递activation参数实现。 model.add(Dense(64, activation='tanh')) 预定义激活函数: softmax:对输入数据的最后一维进行softmax,输入数据应形如(nb_samples, nb_timesteps, nb_dims)或(nb_samples, nb_dims) elu se...原创 2020-03-01 22:29:09 · 1468 阅读 · 0 评论 -
安装tensorflow 2.0.0-alpha0
# cpu版 pip install tensorflow==2.0.0-alpha0 # gpu版 pip install tensorflow-gpu==2.0.0-alpha0原创 2020-03-01 21:42:42 · 1326 阅读 · 1 评论 -
TensorFlow实现时报错FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated;...
问题如下图: 出现警告: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'. _np_qint8 = np.dtype([...原创 2020-03-01 21:37:06 · 257 阅读 · 0 评论
分享