本篇文章给大家分享的是有关python 中怎么随机打乱图片和对应的标签,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
如下所示:
# -*- coding: utf-8 -*- import os import numpy as np import pandas as pd import h6py import pylab import matplotlib.pyplot as plt trainpath = str('C:/Users/49691/Desktop/数据集/train/') testpath = str('C:/Users/49691/Desktop/数据集/test/') n_tr = len(os.listdir(trainpath)) print('num of training files: ', n_tr) train_labels = pd.read_csv('C:/Users/49691/Desktop/数据集/sample_submission.csv') train_labels.head() from skimage import io, transform x = np.empty(shape=(n_tr, 224, 224, 3)) y = np.empty(n_tr) labels = train_labels.invasive.values name = train_labels.name.values permutation=np.random.permutation(name.shape[0]) print(permutation) print(labels[permutation]) save_data = pd.DataFrame({'name':permutation,'invasive':labels[permutation]}) save_data.to_csv('C:/Users/49691/Desktop/数据集/b.csv') for k,v in enumerate(np.random.permutation(n_tr)): print(k,v) path = '{0}{1}.jpg'.format(trainpath, v) tr_im = io.imread(path) x[k] = transform.resize(tr_im, output_shape=(224, 224, 3)) y[k] = float(labels[v-1])
以上就是python 中怎么随机打乱图片和对应的标签,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。