博客
关于我
keras中ImageDataGenerator用法
阅读量:112 次
发布时间:2019-02-26

本文共 1556 字,大约阅读时间需要 5 分钟。

ImageDataGenerator?Keras.preprocessing.image??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

??????

  • featurewise_center?????????????????????????????????????
  • samplewise_center??????????????????????????????????
  • featurewise_std_normalization?????????????????????????????
  • samplewise_std_normalization?????????????????????????????????
  • zca_whitening????????????ZCA??????????????
  • rotation_range????????????????????????0?180??
  • width_shift_range????????????????????0?1?
  • height_shift_range????????????????????0?1?
  • shear_range?????????????????
  • zoom_range??????????????????????[lower, upper]????????????????
  • channel_shift_range?????????????????
  • fill_mode?????????constant???nearest???reflect???wrap???????????????????????
  • cveta????????????constant????????????
  • horizontal_flip????????????????
  • vertical_flip????????????????
  • rescale???????????????????????????????0?1?
  • preprocessing_function?????????????????????????????
  • data_format?????????????????????channel_first???channel_last??????

????

train_datagen = ImageDataGenerator(    preprocessing_function=preprocess_input,    rotation_range=30,    width_shift_range=0.2,    height_shift_range=0.2,    shear_range=0.2,    zoom_range=0.2,    horizontal_flip=True)

??????

  • shear_range??????????????x?y???????????????????????????
  • zoom_range????????????????0?1????????1????????????????????????????
  • fill_mode????????????nearest??????????????????????????????constant?????????reflect???????wrap????????

??????ImageDataGenerator???????????????????????????????????

转载地址:http://pvuy.baihongyu.com/

你可能感兴趣的文章
mysql监控工具-PMM,让你更上一层楼(下)
查看>>
MySQL相关命令
查看>>
mysql社工库搭建教程_社工库的搭建思路与代码实现
查看>>
MySQL笔记:InnoDB的锁机制
查看>>
MySQL简单查询
查看>>
MySQL管理利器 MySQL Utilities 安装
查看>>
mysql类型转换函数convert与cast的用法
查看>>
mysql系列一
查看>>
MySQL系列之数据类型(Date&Time)
查看>>
Mysql系列之锁机制
查看>>
Mysql系列九:使用zookeeper管理远程Mycat配置文件、Mycat监控、Mycat数据迁移(扩容)...
查看>>
mysql索引
查看>>
mysql索引
查看>>
Mysql索引,索引的优化,如何避免索引失效案例
查看>>
mysql索引、索引优化(这一篇包括所有)
查看>>
MySql索引为什么使用B+树
查看>>
WARNING!VisualDDK wizard was unable to find any DDK/WDK installed on your system.
查看>>
Mysql索引优化
查看>>
MySQl索引创建
查看>>
mysql索引创建及使用注意事项
查看>>