1 Star 0 Fork 246

姚阔/OPTIMAL_KNN_MNIST_QUESTION_1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
optimal_knn_webapp.py 944 Bytes
一键复制 编辑 原始数据 按行查看 历史
姚阔 提交于 2024-09-23 13:06 . OPTIMAL_KNN_MNIST_QUESTION_1
import gradio as gr
import numpy as np
from collections import Counter
from pinecone_example import load_pinecone
import matplotlib.pyplot as plt
from PIL import Image
def predict_digit(stroke):
image = np.array(stroke['composite'])
plt.imshow(image, cmap='gray')
plt.axis('off')
plt.savefig('output_image.png')
plt.close()
image_array = image.flatten().reshape(-1, 64)[0].tolist()
results = load_pinecone().query(vector=image_array, top_k=11, include_metadata=True)
labels = [match['metadata']['label'] for match in results['matches']] if results['matches'] else []
predicted_label = Counter(labels).most_common(1)[0][0] if labels else None
return predicted_label
iface = gr.Interface(
fn=predict_digit,
inputs=gr.Sketchpad(label="绘制数字", crop_size=(8, 8), type="pil"),
outputs="label",
title="数字识别",
description="绘制数字并识别其数字"
)
iface.launch()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yao-kuo/optimal_knn_mnist_question_1.git
git@gitee.com:yao-kuo/optimal_knn_mnist_question_1.git
yao-kuo
optimal_knn_mnist_question_1
OPTIMAL_KNN_MNIST_QUESTION_1
main

搜索帮助