本次共找到 18keras 相关的文章

4年前
tf.keras遇见的坑:Output tensors to a Model must be the output of a TensorFlow `Layer`
经过网上查找,找到了问题所在:在使用keras编程模式是,中间插入了tf.reshape()方法便遇到此问题。 解决办法:对于遇到相同问题的任何人,可以使用keras的Lambda层来包装张量流操作,这是我所做的:embed1keras.layers.Embedding(10000,32)(inputs)
4年前
CTPN CRNN
通过利用keras以及一些自定义函数进行数据增强,CTPN进行文字定位,CRNN进行文字识别以及FlaskWeb实现银行卡号码识别Github地址(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fbay1%2Fcardcrnnctpn)由于我并不是
4年前
Keras 时序模型
版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/Thinking\_boy1992/article/details/53207177本文翻译自(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fkeras.io%2Fgettingst
4年前
0502 直播|AI Open Day
!(https://oscimg.oschina.net/oscnet/36a3beaf87260fc894b7a78922180362e8c.jpg)提到人工智能框架,开发者们脑子里立马会闪现出TensorFlow、Keras、PyTorch、MXNet、Caffe2、FastAI、MindSpore、飞桨(https://www.
4年前
0502 直播|AI Open Day
!(https://oscimg.oschina.net/oscnet/36a3beaf87260fc894b7a78922180362e8c.jpg)提到人工智能框架,开发者们脑子里立马会闪现出TensorFlow、Keras、PyTorch、MXNet、Caffe2、FastAI、MindSpore、飞桨(https://www.
4年前
Keras实践笔记7——简易长短记忆网络LSTM
fromkeras.datasetsimportmnistfromkeras.layersimportLSTM,Densefromkeras.modelsimportSequentialfromkeras.utilsimportnp_utils(X_train,y_trai
4年前
Keras实践笔记8——使用TensorBoard查看训练过程
importmatplotlib.pyplotaspltimportnumpyasnpfromkerasimportSequentialfromkeras.callbacksimportTensorBoardfromkeras.layersimportDense
4年前
Keras
1,一般描述wesawthattheaccuracyofourmodelonthevalidationdatawouldpeakaftertrainingforanumberofepochs,andwouldthenstartdecreasing.Inotherwords,ourmodelw
4年前
Keras实践笔记10——使用ImageDataGenerator进行图像增广
from__future__importprint_functionimportkerasfromkeras.datasetsimportcifar10fromkeras.layersimportConv2D,MaxPooling2Dfromkeras.layersimpor
4年前
Keras实践笔记6——单层自编码器
importnumpyasnpfromkeras.datasetsimportmnistfromkeras.layersimportDense,Inputfromkeras.modelsimportModelimg_rows,img_cols28,28
4年前
Keras实践笔记1——线性回归
importmatplotlib.pyplotaspltimportnumpyasnpfromkerasimportSequentialfromkeras.layersimportDensexnp.linspace(10,10,300)y3x
4年前
Keras实践笔记11——使用简易深度神经网络识别EnglishFnt数据集
有了前面的积累,我们可以开始用一些实际的例子结合着Keras提供的Example进行学习了,后续的例子会使用EnglishFnt这个印刷体数据集进行训练和识别,这个数据集里面存放了从09的数字和AZ的英文字符。!(https://oscimg.oschina.net/oscnet/f09a086c7c7e9d7cb370e394d5d3dfdec
4年前
Keras实践笔记2——logistics回归
fromkeras.modelsimportSequentialfromkeras.layersimportDensefromkeras.datasetsimportmnistfromkeras.utilsimportnp_utils(X_train,y_train),(X
4年前
(转)用Keras实现用于提取视频特征的3维卷积网络
转至:http://www.tianzsong.xyz/2018/04/08/c3dkeras/code:https://github.com/TianzhongSong/C3Dkeras前言C3D使用3DCNN构造了一个效果不错的网络结构,对于基于视频的问题均可以用来提取特征。我简单复现了论文中行为识别那部分的实
4年前
Keras实践笔记9——模型的保存与恢复
importnumpyasnpfromkerasimportSequentialfromkeras.callbacksimportTensorBoardfromkeras.layersimportDensefromkeras.modelsimportload_model
4年前
Keras实践笔记4——深度多层感知模型
fromkeras.datasetsimportmnistfromkeras.layersimportDense,Dropoutfromkeras.modelsimportSequentialfromkeras.optimizersimportRMSpropfromkeras.uti
4年前
Keras实践笔记5——卷积深度神经网络
fromkeras.datasetsimportmnistfromkeras.layersimportDense,Flatten,Conv2D,MaxPooling2D,Dropoutfromkeras.modelsimportSequentialfromkeras.optimizersim
4年前
Keras实践笔记3——全连接层基础
fromkeras.modelsimportSequentialfromkeras.layersimportDense,initializersfromkeras.optimizersimportSGDfromkeras.datasetsimportmnistfromkeras.ut