Keras学习笔记

Keras学习笔记

[Toc]

Python For Data ScienceCheat SheetKeras:
https://s3.amazonaws.com/assets.datacamp.com/blog_assets/Keras_Cheat_Sheet_Python.pdf

1. 版本问题

1.1. 特性改动

  1. <font color = 'red'>from __future__ import print_function</font>

在开头加上这句代码之后,即使在python2.X,使用print就得像python3.X那样加括号使用,python2.X中print不需要括号,而在python3.X中则需要。其他例子:
<font color = 'red'>from __future__ import division</font>,
<font color = 'red'>from __future__ import absolute_import</font>,
<font color = 'red'>from __future__ import with_statement</font>。等等

2. 模块介绍

2.1. Sequential

The Sequential model is a linear stack of layers

生成序列模型(Sequential Model)的两种方法

from keras.models import Sequential
from keras.layers import Dense, Activation

方法一(passing a list of layer instances):
model = Sequential([
    Dense(32, input_shape=(784,)),
    Activation('relu'),
    Dense(10),
    Activation('softmax'),
])

方法二(via the .add()):
model = Sequential()
model.add(Dense(32, input_dim=784))
model.add(Activation('relu'))

2.2. MaxPooling2D

  1. 导入方法:from keras.layers import MaxPooling2D

  2. MaxPooling2D

     keras.layers.MaxPooling2D(pool_size=(2, 2), strides=None, padding='valid', data_format=None)
    

优点

  • 保证特征的位置与旋转不变性。因为不论这个强特征在哪个位置出现,都会不考虑其出现位置而能把它提出来。

  • 减少模型参数数量,有利于减少模型过拟合问题。因为经过Pooling操作后,往往把2D或者1D的数组转换为单一数值。

缺点

  • 特征的位置信息在这一步骤完全丢失。

  • 同一特征的强度信息丢失了。

  1. 改进的Pooling机制有: K-max Pooling,Chunk-Max Pooling。

2.3. Conv2D

  1. 导入方法:from keras.layers import Conv2D

  2. Conv2D

     keras.layers.Conv2D(filters, kernel_size, strides=(1, 1), padding='valid', data_format=None, dilation_rate=(1, 1), activation=None, use_bias=True, kernel_initializer='glorot_uniform', bias_initializer='zeros', kernel_regularizer=None, bias_regularizer=None, activity_regularizer=None, kernel_constraint=None, bias_constraint=None)
    

Caution

When using this layer as the first layer in a model, provide the keyword argument input_shape (tuple of integers, does not include the batch axis), e.g. input_shape=(128, 128, 3) for 128x128 RGB pictures in data_format="channels_last"

Input shape

4D tensor with shape: (batch, channels, rows, cols) if data_format is "channels_first" or 4D tensor with shape: (batch, rows, cols, channels) if data_format is "channels_last"

2.4. ImageDataGenerator

  1. 导入方法:from keras.preprocessing.image import ImageDataGenerator

  2. ImageDataGenerator Class

     keras.preprocessing.image.ImageDataGenerator(featurewise_center=False, samplewise_center=False, featurewise_std_normalization=False, samplewise_std_normalization=False, zca_whitening=False, zca_epsilon=1e-06, rotation_range=0, width_shift_range=0.0, height_shift_range=0.0, brightness_range=None, shear_range=0.0, zoom_range=0.0, channel_shift_range=0.0, fill_mode='nearest', cval=0.0, horizontal_flip=False, vertical_flip=False, rescale=None, preprocessing_function=None, data_format=None, validation_split=0.0, dtype=None)
    

    参数:

    • featurewise_center: Boolean. 对输入的图片每个通道减去每个通道对应均值。
    • samplewise_center: Boolan. 每张图片减去样本均值, 使得每个样本均值为0。
    • eaturewise_std_normalization(): Boolean()
    • samplewise_std_normalization(): Boolean()
    • zca_epsilon(): Default 12-6
    • zca_whitening: Boolean. 去除样本之间的相关性
    • rotation_range(): 旋转范围
    • width_shift_range(): 水平平移范围
    • height_shift_range(): 垂直平移范围
    • shear_range(): float, 透视变换的范围
    • zoom_range(): 缩放范围
    • fill_mode: 填充模式, constant, nearest, reflect
    • cval: fill_mode == 'constant'的时候填充值
    • horizontal_flip(): 水平反转
    • vertical_flip(): 垂直翻转
    • preprocessing_function(): user提供的处理函数
    • data_format(): channels_first或者channels_last
    • validation_split(): 多少数据用于验证集

3. Datasets

3.1. CIFAR10

  1. CIFAR10 small image classification

Dataset of 50,000 32x32 color training images, labeled over 10 categories, and 10,000 test images.

  1. 用法
from keras.datasets import cifar10

(x_train, y_train), (x_test, y_test) = cifar10.load_data()
  1. cifar10
  • 定义了数据加载方法:load_data()
  • 使用get_file()方法调用urlretrieve()方法下载cifar10数据集

3.2. CIFAR100

  1. CIFAR100 small image classification

Dataset of 50,000 32x32 color training images, labeled over 100 categories, and 10,000 test images.

  1. 用法
from keras.datasets import cifar100

(x_train, y_train), (x_test, y_test) = cifar100.load_data(label_mode='fine')

3.3. IMDB

  1. IMDB Movie reviews sentiment classification

Dataset of 25,000 movies reviews from IMDB, labeled by sentiment (positive/negative). Reviews have been preprocessed, and each review is encoded as a sequence of word indexes (integers). For convenience, words are indexed by overall frequency in the dataset, so that for instance the integer "3" encodes the 3rd most frequent word in the data. This allows for quick filtering operations such as: "only consider the top 10,000 most common words, but eliminate the top 20 most common words".

As a convention, "0" does not stand for a specific word, but instead is used to encode any unknown word.

  1. 用法
from keras.datasets import imdb

(x_train, y_train), (x_test, y_test) = imdb.load_data(path="imdb.npz",
                                                      num_words=None,
                                                      skip_top=0,
                                                      maxlen=None,
                                                      seed=113,
                                                      start_char=1,
                                                      oov_char=2,
                                                      index_from=3)
  1. imdb

3.4. MNIST

  1. MNIST database of handwritten digits

Dataset of 60,000 28x28 grayscale images of the 10 digits, along with a test set of 10,000 images.

  1. 用法
from keras.datasets import mnist

(x_train, y_train), (x_test, y_test) = mnist.load_data()
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352