博客
关于我
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系列之数据类型(Date&Time)
查看>>
MySQL系列之数据类型(Date&Time)
查看>>
Mysql系列之锁机制
查看>>
Mysql系列九:使用zookeeper管理远程Mycat配置文件、Mycat监控、Mycat数据迁移(扩容)...
查看>>
MySql系列:[4200][1140]In aggregated query without GROUP BY, expression #2 of SELECT list contains nona
查看>>
MySQL索引
查看>>
Mysql索引
查看>>
mysql索引
查看>>
mysql索引
查看>>
Mysql索引,索引的优化,如何避免索引失效案例
查看>>
Mysql索引、命令重点介绍
查看>>
mysql索引、索引优化(这一篇包括所有)
查看>>
Mysql索引一篇就够了
查看>>
MySQL索引一篇带你彻底搞懂(一次讲清实现原理加优化实战,面试必问)
查看>>
MySQL索引下沉:提升查询性能的隐藏秘
查看>>
MySql索引为什么使用B+树
查看>>
MySQL索引为什么是B+树
查看>>
WARNING!VisualDDK wizard was unable to find any DDK/WDK installed on your system.
查看>>
MySQL索引介绍及百万数据SQL优化实践总结
查看>>
Mysql索引优化
查看>>