1 Star 0 Fork 1

douyayun/easy12306

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
category_images.py 612 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhai_pro 提交于 2019-01-13 12:11 . 相似图片搜索
import numpy as np
import mlearn
from pretreatment import load_data
def learn():
texts, imgs = load_data()
labels = mlearn.predict(texts)
labels = labels.argmax(axis=1)
imgs.dtype = np.uint64
imgs.shape = (-1, 8)
unique_imgs = np.unique(imgs)
print(unique_imgs.shape)
imgs_labels = []
for img in unique_imgs:
idxs = np.where(imgs == img)[0]
counts = np.bincount(labels[idxs], minlength=80)
imgs_labels.append(counts)
np.savez('images.npz', images=unique_imgs, labels=imgs_labels)
if __name__ == '__main__':
learn()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/douyayun/easy12306.git
git@gitee.com:douyayun/easy12306.git
douyayun
easy12306
easy12306
master

搜索帮助