TensorFlow实现one-hot编码TensorFlow2入门手册
Posted K同学啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow实现one-hot编码TensorFlow2入门手册相关的知识,希望对你有一定的参考价值。
- 🔗 运行环境:python3
- 🚩 作者:K同学啊
- 🥇 精选专栏:《深度学习100例》
- 🔥 推荐专栏:《新手入门深度学习》
- 📚 选自专栏:《Matplotlib教程》
- 🧿 优秀专栏:《Python入门100题》
代码实现:
from tensorflow.keras.utils import to_categorical
onehotencoder = OneHotEncoder()
a = to_categorical(val_label)
b = to_categorical(val_pre)
a
效果图:
以上是关于TensorFlow实现one-hot编码TensorFlow2入门手册的主要内容,如果未能解决你的问题,请参考以下文章
Pytorch基本使用(2)Tensor转成one-hot形式