1 Star 0 Fork 123

熊茗煊/图像相似性搜索网页应用

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
train.py 570 Bytes
一键复制 编辑 原始数据 按行查看 历史
熊茗煊 提交于 2024-06-13 12:32 . update
import numpy as np
import faiss
from utils import get_model, get_img_files, batch_process_images
from django.conf import settings
import tensorflow as tf
import os
import glob
model = get_model()
img_files=glob.glob('./static/data/data/*.jpg')
img_files=sorted(img_files)
features = batch_process_images(img_files, model)
dimension = features.shape[1]
index = faiss.IndexFlatIP(dimension)
faiss.normalize_L2(features)
index.add(features)
faiss.write_index(index, 'faiss_index_database')
os.rename('faiss_index_database', 'static/model/faiss_index_database')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiong-mingxuan-xx/img_search_proj.git
[email protected]:xiong-mingxuan-xx/img_search_proj.git
xiong-mingxuan-xx
img_search_proj
图像相似性搜索网页应用
master

搜索帮助