2026-02-01 20:35:04 +03:00
|
|
|
import type { SectionConfigOverrides } from "./types";
|
|
|
|
|
|
|
|
|
|
const model: SectionConfigOverrides = {
|
|
|
|
|
base: {
|
2026-02-02 18:20:49 +03:00
|
|
|
sectionDocs: "/configuration/object_detectors#model",
|
|
|
|
|
restartRequired: [],
|
2026-02-01 20:35:04 +03:00
|
|
|
fieldOrder: [
|
|
|
|
|
"path",
|
|
|
|
|
"labelmap_path",
|
|
|
|
|
"width",
|
|
|
|
|
"height",
|
|
|
|
|
"input_pixel_format",
|
|
|
|
|
"input_tensor",
|
|
|
|
|
"input_dtype",
|
|
|
|
|
"model_type",
|
|
|
|
|
],
|
|
|
|
|
advancedFields: [
|
|
|
|
|
"input_pixel_format",
|
|
|
|
|
"input_tensor",
|
|
|
|
|
"input_dtype",
|
|
|
|
|
"model_type",
|
|
|
|
|
],
|
2026-02-11 19:56:48 +03:00
|
|
|
hiddenFields: [
|
|
|
|
|
"labelmap",
|
|
|
|
|
"attributes_map",
|
|
|
|
|
"colormap",
|
|
|
|
|
"all_attributes",
|
2026-02-11 19:59:20 +03:00
|
|
|
"non_logo_attributes",
|
2026-02-11 19:56:48 +03:00
|
|
|
"plus",
|
|
|
|
|
],
|
2026-02-01 20:35:04 +03:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default model;
|