{% extends 'base.html' %} {% block title %}模型军械库 - 节点管理{% endblock %} {% block content %}

模型军械库 (Model Repository)

{% if models %}
{% for model in models %} {% endfor %}
节点名称 (Name) 架构描述 (Description) 性能指标 (mAP) 版本 (Version) 挂载时间 (Timestamp) 权重流 (File) 指令覆盖 (Operations)
{{ model.name }}
{{ model.description }} {{ model.mAP|default:"N/A" }} v{{ model.version|default:"1.0" }} {{ model.uploaded_at|date:"Y-m-d H:i:s" }} 下载 编辑 销毁
{% else %}

⚠️ 未检测到已挂载的神经网络节点

系统核心存储阵列目前为空,请上传您的 YOLO 权重文件。

立即挂载
{% endif %}
{% endblock %}