Keras
weixin_42886817
这个作者很懒,什么都没留下…
展开
-
AttributeError: module 'tensorflow' has no attribute 'get_default_graph'
问题运行程序:出现如下错误AttributeError: module 'tensorflow' has no attribute 'get_default_graph'原因及解决方案原因:tensorflow与keras版本不匹配tensorflow-gpu是2.0 而keras是2.2.4更新keras版本到2.3.1可以解决该问题pip install keras==2.3.1...原创 2020-04-03 00:58:00 · 1959 阅读 · 1 评论 -
【虚拟环境+机器学习】Linux上virtualenv+tensorflow+keras+pytorch
Linux上virtualenv+tensorflow+keras+pytorch1.安装virtualenv2.使用virtualenv创建虚拟环境3.安装tensorflow,keras,pytorch等1.安装virtualenvpip install virtualenv如果出现错误: bash: pip: command not found...则需要安装pip:请按照系统参照相...原创 2020-04-03 00:05:58 · 490 阅读 · 1 评论 -
error: (-215:Assertion failed) total >= 0 && (depth == CV_32F || depth == CV_32S) in function 'cv::c
出错背景使用的是python-opencv在调用cv2.minAreaRect()时候,出现了如下错误:cv2.error: OpenCV(4.1.1) C:\projects\opencv-python\opencv\modules\imgproc\src\convhull.cpp:137: error:(-215:Assertion failed) total >= 0 &am...原创 2019-10-21 20:03:24 · 11371 阅读 · 4 评论 -
Keras学习(三)—— Regerssion回归实例
代码是跟着b站莫凡教程学习的,感兴趣的可以去听一下import numpy as npnp.random.seed(1337)# for reproducibilityfrom keras.models import Sequentialfrom keras.layers import Denseimport matplotlib.pyplot as plt# create so...原创 2019-08-21 10:55:40 · 241 阅读 · 0 评论 -
Keras学习(二)—— 模型相关函数: model.train_on_batch()
model.train_on_batch 函数作用函数定义函数作用model.train_on_batch() 在训练集数据的一批数据上进行训练函数定义train_on_batch(x, y, sample_weight=None, class_weight=None)参数含义:x Numpy训练数据数组,或Numpy数组列表(如果模型有多个输入)。 如果模型中的所有输入都已...原创 2019-08-21 10:57:21 · 20679 阅读 · 3 评论 -
Keras学习(一)—— Keras 模型(keras.model): Sequential 顺序模型 和 Model 模型
Keras Model模型Keras 中文文档Keras 模型Sequential 顺序模型Sequential使用方法一个简单的Sequential示例构建方法input shape 输入的形状(格式)complication 编译training 训练Model 模型Model 使用方法compile 编译fit 进行训练evaluate 函数进行评估Keras 中文文档首先了解Keras...原创 2019-08-20 14:58:33 · 33896 阅读 · 4 评论 -
Keras学习(四)—— Classify分类简单实例
代码import numpy as npnp.random.seed(1337)from keras.datasets import mnistfrom keras.utils import np_utilsfrom keras.models import Sequentialfrom keras.layers import Dense,Activationfrom keras.op...原创 2019-08-21 15:35:03 · 832 阅读 · 0 评论 -
keras.utils.to_categorical中的num_class参数(IndexError: index 5 is out of bounds for axis 1 with size 5)
keras.utils.to_categorical函数用来作什么?用来将整数型标签转化为onehot数据。例如,原来使用数组labels=[[1],[2],[5],[4],[5],[2],[3]]表示标签,只有使用keras.utils.to_categorical函数将其转化为onehot数据后,才能交由网络进行训练。keras.utils.to_categorical定义to_cat...原创 2019-08-28 14:41:08 · 7644 阅读 · 0 评论 -
Keras : 创建自己的generator(适用于model.fit_generator),解决内存问题
为什么要使用model.fit_generator?在现实的机器学习中,训练一个model往往需要数量巨大的数据,如果使用fit进行数据训练,很有可能导致内存不够,无法进行训练。fit_generator的定义如下:fit_generator(generator, steps_per_epoch=None, epochs=1, verbose=1, callbacks=None, val...原创 2019-08-29 11:34:27 · 7362 阅读 · 3 评论