广告位联系
返回顶部
分享到

plotly分割显示mnist的方法

python 来源:互联网 作者:秩名 发布时间:2022-03-17 21:29:38 人浏览
摘要

加载mnist 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 import numpy def loadMnist() - (numpy.ndarray,numpy.ndarray,numpy.ndarray,numpy.ndarray): :retur

加载mnist

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

import numpy

def loadMnist() -> (numpy.ndarray,numpy.ndarray,numpy.ndarray,numpy.ndarray):

    """

    :return:  (xTrain,yTrain,xTest,yTest)

    """

    global _TRAIN_SAMPLE_CNT

    global PIC_H

    global PIC_W

    global _TEST_SAMPLE_CNT

    global PIC_HW

    from tensorflow import keras #修改点: tensorflow:2.6.2,keras:2.6.0 此版本下,  import keras 换成 from tensorflow import keras

    import tensorflow

    print(f"keras.__version__:{keras.__version__}")#2.6.0

    print(f"tensorflow.__version__:{tensorflow.__version__}")#2.6.2

    # avatar_img_path = "/kaggle/working/data"

 

    import os

    import cv2

    xTrain:numpy.ndarray; label_train:numpy.ndarray; xTest:numpy.ndarray; label_test:numpy.ndarray

    yTrain:numpy.ndarray; yTest:numpy.ndarray

    #%userprofile%\.keras\datasets\mnist.npz

    (xTrain, label_train), (xTest, label_test) = keras.datasets.mnist.load_data()

    # x_train.shape,y_train.shape, x_test.shape, label_test.shape

    # (60000, 28, 28), (60000,), (10000, 28, 28), (10000,)

    _TRAIN_SAMPLE_CNT,PIC_H,PIC_W=xTrain.shape

    PIC_HW=PIC_H*PIC_W

    xTrain=xTrain.reshape((-1, PIC_H * PIC_W))

    xTest=xTest.reshape((-1, PIC_H * PIC_W))

    _TEST_SAMPLE_CNT=label_test.shape[0]

 

    from sklearn import preprocessing

 

    #pytorch 的 y 不需要 oneHot

    #_label_train是1列多行的样子.  _label_train.shape : (60000, 1)

    yTrain=label_train

    # y_train.shape:(60000) ; y_train.dtype: dtype('int')

    CLASS_CNT=yTrain.shape[0]

    yTest=label_test

    # y_test.shape:(10000) ; y_test.dtype: dtype('int')

    xTrainMinMaxScaler:preprocessing.MinMaxScaler; xTestMinMaxScaler:preprocessing.MinMaxScaler

    xTrainMinMaxScaler=preprocessing.MinMaxScaler()

    xTestMinMaxScaler=preprocessing.MinMaxScaler()

    # x_train.dtype: dtype('uint8') -> dtype('float64')

    xTrain=xTrainMinMaxScaler.fit_transform(xTrain)

    # x_test.dtype: dtype('uint8') -> dtype('float64')

    xTest = xTestMinMaxScaler.fit_transform(xTest)

    return (xTrain,yTrain,xTest,yTest)

1

xTrain:torch.Tensor;yTrain:torch.Tensor; xTest:torch.Tensor; yTest:torch.Tensor(xTrain,yTrain,xTest,yTest)=loadMnist()

plotly 显示多个mnist样本

1

2

3

4

5

6

7

8

9

10

11

12

import plotly.express

import plotly.graph_objects

import plotly.subplots

import numpy

xTrain:numpy.ndarray=numpy.random.random((2,28,28))

#xTrain[0].shape:(28,28)

#fig:plotly.graph_objects.Figure=None

fig=plotly.subplots.make_subplots(rows=1,cols=2,shared_xaxes=True,shared_yaxes=True) #共1行2列

fig.add_trace(trace=plotly.express.imshow(img=xTrain[0]).data[0],row=1,col=1) #第1行第1列

fig.add_trace(trace=plotly.express.imshow(img=xTrain[1]).data[0],row=1,col=2) #第1行第2列

fig.show()

#参数row、col从1开始,  不是从0开始的

plotly 显示单个图片

1

2

3

4

5

6

7

import numpy

xTrain:numpy.ndarray=numpy.random.random((2,28,28))

#xTrain[0].shape:(28,28)

import plotly.express

import plotly.graph_objects

plotly.express.imshow(img=xTrain[0]).show()

#其中plotly.express.imshow(img=xTrain[0]) 的类型是 plotly.graph_objects.Figure

xTrain[0]显示如下:

请添加图片描述

mnist单样本分拆显示

1

2

3

4

5

6

7

8

9

10

#mnist单样本分割 分割成4*4小格子显示出来, 以确认分割的对不对。 以下代码是正确的分割。 主要逻辑是:   (7,4,7,4)   [h, :, w, :]

fig:plotly.graph_objects.Figure=plotly.subplots.make_subplots(rows=7,cols=7,shared_xaxes=True,shared_yaxes=True,vertical_spacing=0,horizontal_spacing=0)

xTrain0Img:torch.Tensor=xTrain[0].reshape((PIC_H,PIC_W))

plotly.express.imshow(img=xTrain0Img).show()

xTrain0ImgCells:torch.Tensor=xTrain0Img.reshape((7,4,7,4))

for h in range(7):

    for w in range(7):

        print(f"h,w:{h},{w}")

        fig.add_trace(trace=plotly.express.imshow(xTrain0ImgCells[h,:,w,:]).data[0],col=h+1,row=w+1)

fig.show()

mnist单样本分拆显示结果: 由此图可知 (7,4,7,4) [h, :, w, :] 是正常的取相邻的像素点出而形成的4*4的小方格 ,这正是所需要的

请添加图片描述

上图显示 的 横坐标拉伸比例大于纵坐标 所以看起来像一个被拉横了的手写数字5 ,如果能让plotly把横纵拉伸比例设为相等 上图会更像手写数字5

可以用torch.swapdim进一步改成以下代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

"""

mnist单样本分割 分割成4*4小格子显示出来, 重点逻辑是: (7, 4, 7, 4)  [h, :, w, :]

:param xTrain:

:return:

"""

fig: plotly.graph_objects.Figure = plotly.subplots.make_subplots(rows=7, cols=7, shared_xaxes=True,  shared_yaxes=True, vertical_spacing=0,  horizontal_spacing=0)

xTrain0Img: torch.Tensor = xTrain[0].reshape((PIC_H, PIC_W))

plotly.express.imshow(img=xTrain0Img).show()

xTrain0ImgCells: torch.Tensor = xTrain0Img.reshape((7, 4, 7, 4))

xTrain0ImgCells=torch.swapdims(input=xTrain0ImgCells,dim0=1,dim1=2)#交换 (7, 4, 7, 4) 维度1、维度2 即 (0:7, 1:4, 2:7, 3:4)

for h in range(7):

    for w in range(7):

        print(f"h,w:{h},{w}")

        fig.add_trace(trace=plotly.express.imshow(xTrain0ImgCells[h, w]).data[0], col=h + 1, row=w + 1) # [h, w, :, :] 或 [h, w]

fig.show()

mnist单样本错误的分拆显示

以下 mnist单样本错误的分拆显示:

1

2

3

4

5

6

7

8

9

10

# mnist单样本错误的分拆显示:

    fig: plotly.graph_objects.Figure = plotly.subplots.make_subplots(rows=7, cols=7, shared_xaxes=True,  shared_yaxes=True, vertical_spacing=0,  horizontal_spacing=0)

    xTrain0Img: torch.Tensor = xTrain[0].reshape((PIC_H, PIC_W))

    plotly.express.imshow(img=xTrain0Img).show()

    xTrain0ImgCells: torch.Tensor = xTrain0Img.reshape((4,7, 4, 7))  #原本是: (7,4,7,4)

    for h in range(7):

        for w in range(7):

            print(f"h,w:{h},{w}")

            fig.add_trace(trace=plotly.express.imshow(xTrain0ImgCells[:, h,  :, w]).data[0], col=h + 1, row=w + 1)  #原本是: [h,:,w,:]

    fig.show()

其结果为: 由此图可知 (4,7, 4, 7) [:, h, :, w] 是间隔的取出而形成的4*4的小方格 

请添加图片描述


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/hfcaoguilin/article/details/123519043
    Tag :
相关文章
  • Python Django教程之实现新闻应用程序

    Python Django教程之实现新闻应用程序
    Django是一个用Python编写的高级框架,它允许我们创建服务器端Web应用程序。在本文中,我们将了解如何使用Django创建新闻应用程序。 我们将
  • 书写Python代码的一种更优雅方式(推荐!)

    书写Python代码的一种更优雅方式(推荐!)
    一些比较熟悉pandas的读者朋友应该经常会使用query()、eval()、pipe()、assign()等pandas的常用方法,书写可读性很高的「链式」数据分析处理代码
  • Python灰度变换中伽马变换分析实现

    Python灰度变换中伽马变换分析实现
    1. 介绍 伽马变换主要目的是对比度拉伸,将图像灰度较低的部分进行修正 伽马变换针对的是对单个像素点的变换,也就是点对点的映射 形
  • 使用OpenCV实现迷宫解密的全过程

    使用OpenCV实现迷宫解密的全过程
    一、你能自己走出迷宫吗? 如下图所示,可以看到是一张较为复杂的迷宫图,相信也有人尝试过自己一点一点的找出口,但我们肉眼来解谜
  • Python中的数据精度问题的介绍

    Python中的数据精度问题的介绍
    一、python运算时精度问题 1.运行时精度问题 在Python中(其他语言中也存在这个问题,这是计算机采用二进制导致的),有时候由于二进制和
  • Python随机值生成的常用方法

    Python随机值生成的常用方法
    一、随机整数 1.包含上下限:[a, b] 1 2 3 4 import random #1、随机整数:包含上下限:[a, b] for i in range(10): print(random.randint(0,5),end= | ) 查看运行结
  • Python字典高级用法深入分析讲解
    一、 collections 中 defaultdict 的使用 1.字典的键映射多个值 将下面的列表转成字典 l = [(a,2),(b,3),(a,1),(b,4),(a,3),(a,1),(b,3)] 一个字典就是一个键对
  • Python浅析多态与鸭子类型使用实例
    什么多态:同一事物有多种形态 为何要有多态=》多态会带来什么样的特性,多态性 多态性指的是可以在不考虑对象具体类型的情况下而直
  • Python字典高级用法深入分析介绍
    一、 collections 中 defaultdict 的使用 1.字典的键映射多个值 将下面的列表转成字典 l = [(a,2),(b,3),(a,1),(b,4),(a,3),(a,1),(b,3)] 一个字典就是一个键对
  • Python淘宝或京东等秒杀抢购脚本实现(秒杀脚本

    Python淘宝或京东等秒杀抢购脚本实现(秒杀脚本
    我们的目标是秒杀淘宝或京东等的订单,这里面有几个关键点,首先需要登录淘宝或京东,其次你需要准备好订单,最后要在指定时间快速
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计