博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mxnet导入图像数据
阅读量:5717 次
发布时间:2019-06-18

本文共 1601 字,大约阅读时间需要 5 分钟。

图像的标签在一个json文件中。

%matplotlib inlineimport jsonimport gluonbook as gbimport mxnet as mxfrom mxnet import autograd, gluon, image, init, ndfrom mxnet.gluon import data as gdata, loss as gloss, utils as gutilsimport sysfrom time import timetrain_Pedestrian_url = []train_Cyclist_url = []train_Others_url = []with open('instances.json',encoding='utf-8') as f:    for _ in range(100000):        if len(train_Pedestrian_url) + len(train_Cyclist_url) + len(train_Others_url) >= 300:            break        line = f.readline()        js = json.loads(line)        if js['attrs']['ignore']=='yes' or js['attrs']['occlusion']=='heavily_occluded' or js['attrs']['occlusion']=='invisible':            continue        if js['attrs']['type'] == 'Pedestrian':            if len(train_Pedestrian_url) >=100:                continue            train_Pedestrian_url.append(js['thumbnail_path'])        elif js['attrs']['type'] == 'Cyclist':            if len(train_Cyclist_url) >=100:                continue            train_Cyclist_url.append(js['thumbnail_path'])        elif js['attrs']['type'] == 'Others':            if len(train_Others_url) >=100:                continue            train_Others_url.append(js['thumbnail_path'])        # img = image.imread(url)    f.close()print(train_Cyclist_url)print(len(train_Pedestrian_url),len(train_Cyclist_url),len(train_Others_url))img = image.imread('/mnt/hdfs-data-4/data/'+train_Cyclist_url[0])img.astype('float32')labels = nd.zeros(shape=(30000,))labels[10000:20000] = 1labels[20000:] = 2

数据整理就差不多了,然后就是建网络,跑模型了。

转载于:https://www.cnblogs.com/TreeDream/p/10059551.html

你可能感兴趣的文章
“飞天”就是一个操作系统,最重要的功能就是资源管理;这套系统简单说就是把所有资源抽象成一台计算机,并通过互联网提供计算服务。...
查看>>
Feature List
查看>>
设计模式总结
查看>>
py 5.31
查看>>
MATLAB机器人系统工具箱入门-小车
查看>>
Day 4 变量常量
查看>>
PHP模拟POST请求,获取response内容
查看>>
-----npm与yarn------
查看>>
木其工作室代写程序 [原]Oracle常用sql语法
查看>>
NYOJ-102 次方求模 AC 分类: NYOJ ...
查看>>
Unity连Photon服务器入门详解
查看>>
去除手机拨号
查看>>
《构建之法》1、2、3章思考与感想
查看>>
golang:模拟http post请求
查看>>
JS Math()函数
查看>>
js中var、let、const区别
查看>>
如何通过新浪微博和QQ空间获取精准客户
查看>>
将博客搬至CSDN
查看>>
POJ 2965, The Pilots Brothers' refrigerator
查看>>
IOS内存管理
查看>>