IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> 2.神经网络实现手写字体分类 -> 正文阅读

[人工智能]2.神经网络实现手写字体分类

一.实验环境

  • jupyter lab
  • tensorflow 2.2.0
  • pythom3.6

二.步骤

1.导入包

#1.开始导入包
#1. Start importing the package
import sklearn
import matplotlib.pyplot as plt
## MNIST数据集在tensorflow中,所以不用自己下了
from tensorflow.keras.datasets import mnist
from tensorflow import keras
from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split
import numpy as np
import pandas as pd

2.导入数据集

#2.导入数据集
#2. Import the dataset
(train_images, train_labels), (test_images, test_labels) = mnist.load_data()
##查看数据集结构
## View the data set structure
print(train_images.shape,train_labels.shape,test_images.shape,test_labels.shape)

在这里插入图片描述

3.处理数据集

## 归一化图像数据集
## Normalized image data set
train_images = train_images.reshape((60000, 28 * 28))
train_images = train_images.astype('float32') / 255
test_images = test_images.reshape((10000, 28 * 28))
test_images = test_images.astype('float32') / 255

## 归一化标签数据集
## Normalized tag data set
from  tensorflow.keras.utils import to_categorical
train_labels = to_categorical(train_labels)
test_labels = to_categorical(test_labels)

##输出归一化后的数据集结构
## Normalized tag data set
print(train_images.shape,train_labels.shape,test_images.shape,test_labels.shape)

在这里插入图片描述

4.定义网络结构

#3.定义网络结构
#3. Define the network structure
model = keras.models.Sequential()
##定义输入层
##Define the input layer
model.add(keras.layers.Dense(30,input_shape = train_images.shape[1:]))
##定义隐藏层,定义 relu 作为激活函数
## Define the hidden layer and define RELu as the activation function
for _ in range(15):
   model.add(keras.layers.Dense(100,activation = 'relu'))
##定义输出层,通常定义 softmax 作为激活函数
##Define the output layer, usually defining Softmax as the activation function
model.add(keras.layers.Dense(10,activation = 'softmax'))
##定义目标函数
## Define the target function
model.compile(loss = "categorical_crossentropy",optimizer = "sgd",metrics = ["accuracy"])
##进行100次迭代
## 100 iterations
history = model.fit(train_images, train_labels, epochs=100, batch_size=128)

在这里插入图片描述

5.检查在测试集上的表现

test_loss, test_acc = model.evaluate(test_images, test_labels)

在这里插入图片描述

最后准确率为97%

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2021-10-12 23:26:02  更:2021-10-12 23:27:10 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 10:17:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码