- 标注:AI 预标注直写 labels_json(去候选确认两阶段);重叠去重(minIoU);全量标注按钮 - 训练:脚本迁移入 server/training/(Go 化 prepare_yolo/analyze_rfdetr,保留 train_server.py);tflite 产物自检并入训练流程(check_tflite) - 数据目录/权重不进 git;.gitignore 迁移至仓库根
40 lines
786 B
CSS
40 lines
786 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
|
|
Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
|
|
color: #303133;
|
|
background: #f0f2f5;
|
|
}
|
|
|
|
/* 手机竖屏适配:筛选表单换行、控件全宽、分页换行居中 */
|
|
@media (max-width: 767px) {
|
|
.el-form--inline {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.el-form--inline .el-form-item {
|
|
margin-right: 0;
|
|
flex: 1 1 100%;
|
|
}
|
|
.el-form--inline .el-input,
|
|
.el-form--inline .el-select,
|
|
.el-form--inline .el-date-editor {
|
|
width: 100% !important;
|
|
}
|
|
.el-pagination {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
row-gap: 8px;
|
|
}
|
|
}
|