浅谈keras中的keras.utils.to_categorical用法


Posted in Python onJuly 02, 2020

如下所示:

to_categorical(y, num_classes=None, dtype='float32')

将整型标签转为onehot。y为int数组,num_classes为标签类别总数,大于max(y)(标签从0开始的)。

返回:如果num_classes=None,返回len(y) * [max(y)+1](维度,m*n表示m行n列矩阵,下同),否则为len(y) * num_classes。说出来显得复杂,请看下面实例。

import keras

ohl=keras.utils.to_categorical([1,3])
# ohl=keras.utils.to_categorical([[1],[3]])
print(ohl)
"""
[[0. 1. 0. 0.]
 [0. 0. 0. 1.]]
"""
ohl=keras.utils.to_categorical([1,3],num_classes=5)
print(ohl)
"""
[[0. 1. 0. 0. 0.]
 [0. 0. 0. 1. 0.]]
"""

该部分keras源码如下:

def to_categorical(y, num_classes=None, dtype='float32'):
  """Converts a class vector (integers) to binary class matrix.

  E.g. for use with categorical_crossentropy.

  # Arguments
    y: class vector to be converted into a matrix
      (integers from 0 to num_classes).
    num_classes: total number of classes.
    dtype: The data type expected by the input, as a string
      (`float32`, `float64`, `int32`...)

  # Returns
    A binary matrix representation of the input. The classes axis
    is placed last.
  """
  y = np.array(y, dtype='int')
  input_shape = y.shape
  if input_shape and input_shape[-1] == 1 and len(input_shape) > 1:
    input_shape = tuple(input_shape[:-1])
  y = y.ravel()
  if not num_classes:
    num_classes = np.max(y) + 1
  n = y.shape[0]
  categorical = np.zeros((n, num_classes), dtype=dtype)
  categorical[np.arange(n), y] = 1
  output_shape = input_shape + (num_classes,)
  categorical = np.reshape(categorical, output_shape)
  return categorical

补充知识:keras笔记——keras.utils.to_categoracal()函数

keras.utils.to_categoracal (y, num_classes=None, dtype='float32')

将整形标签转为onehot,y为int数组,num_classes为标签类别总数,大于max (y),(标签从0开始的)。

返回:

如果num_classes=None, 返回 len(y)*[max(y)+1] (维度,m*n表示m行n列矩阵),否则为len(y)*num_classes。

以上这篇浅谈keras中的keras.utils.to_categorical用法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python的requests网络编程包使用教程
Jul 11 Python
pycharm中连接mysql数据库的步骤详解
May 02 Python
20行python代码实现人脸识别
May 05 Python
基于Python的图像数据增强Data Augmentation解析
Aug 13 Python
Python多重继承之菱形继承的实例详解
Feb 12 Python
Django 自定义404 500等错误页面的实现
Mar 08 Python
Django+python服务器部署与环境部署教程详解
Mar 30 Python
python如何写出表白程序
Jun 01 Python
numpy的Fancy Indexing和array比较详解
Jun 11 Python
Python logging日志库空间不足问题解决
Sep 14 Python
matlab xlabel位置的设置方式
May 21 Python
一小时学会TensorFlow2之基本操作2实例代码
Sep 04 Python
Python使用OpenPyXL处理Excel表格
Jul 02 #Python
解决keras GAN训练是loss不发生变化,accuracy一直为0.5的问题
Jul 02 #Python
解决keras,val_categorical_accuracy:,0.0000e+00问题
Jul 02 #Python
如何基于Python爬取隐秘的角落评论
Jul 02 #Python
keras中epoch,batch,loss,val_loss用法说明
Jul 02 #Python
Python使用tkinter实现摇骰子小游戏功能的代码
Jul 02 #Python
浅谈keras使用预训练模型vgg16分类,损失和准确度不变
Jul 02 #Python
You might like
PHP 和 XML: 使用expat函数(三)
2006/10/09 PHP
php ckeditor上传图片文件名乱码解决方法
2013/11/15 PHP
destoon二次开发入门示例
2014/06/20 PHP
ThinkPHP实现分页功能
2017/04/28 PHP
YII框架实现自定义第三方扩展操作示例
2019/04/26 PHP
php使用mysqli和pdo扩展,测试对比连接mysql数据库的效率完整示例
2019/05/09 PHP
JAVASCRIPT对象及属性
2007/02/13 Javascript
Javascript公共脚本库系列(一): 弹出层脚本
2011/02/24 Javascript
js和jquery中循环的退出和继续下一个循环
2014/09/03 Javascript
基于javascript实现句子翻牌网页版小游戏
2016/03/23 Javascript
node.js 利用流实现读写同步,边读边写的方法
2017/09/11 Javascript
vue做网页开场视频的实例代码
2017/10/20 Javascript
js 图片转base64的方式(两种)
2018/04/24 Javascript
使用Sonarqube扫描Javascript代码的示例
2018/12/26 Javascript
Vue CLI 2.x搭建vue(目录最全分析)
2019/02/27 Javascript
JS操作json对象key、value的常用方法分析
2019/10/29 Javascript
压缩Vue.js打包后的体积方法总结(Vue.js打包后体积过大问题)
2020/02/03 Javascript
Element-ui el-tree新增和删除节点后如何刷新tree的实例
2020/08/31 Javascript
js实现点击烟花特效
2020/10/14 Javascript
在Python中操作字典之update()方法的使用
2015/05/22 Python
Python常用时间操作总结【取得当前时间、时间函数、应用等】
2017/05/11 Python
Python Tkinter实现简易计算器功能
2018/01/30 Python
python3解析库BeautifulSoup4的安装配置与基本用法
2018/06/26 Python
Django migrations 默认目录修改的方法教程
2018/09/28 Python
python自动化测试之DDT数据驱动的实现代码
2019/07/23 Python
Python常用数据分析模块原理解析
2020/07/20 Python
python能做哪些生活有趣的事情
2020/09/09 Python
html5+css3之动画在webapp中的应用
2014/11/21 HTML / CSS
HTML最新标准HTML5总结(必看)
2016/06/13 HTML / CSS
荷兰多品牌网上鞋店:Stoute Schoenen
2017/08/24 全球购物
Martinelli官方商店:西班牙皮鞋和高跟鞋品牌
2019/07/30 全球购物
初级Java程序员面试题
2016/03/03 面试题
英语道歉信范文
2014/01/09 职场文书
2014教师年度工作总结
2014/11/10 职场文书
总结Java对象被序列化的两种方法
2021/06/30 Java/Android
「海贼王」112.9万粉丝纪念图标公布
2022/03/21 日漫