mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
35 lines
678 B
TypeScript
35 lines
678 B
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|
|
|
const model: SectionConfigOverrides = {
|
|
base: {
|
|
sectionDocs: "/configuration/object_detectors#model",
|
|
restartRequired: [],
|
|
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",
|
|
],
|
|
hiddenFields: [
|
|
"labelmap",
|
|
"attributes_map",
|
|
"colormap",
|
|
"all_attributes",
|
|
"non_logo_attributes",
|
|
"plus",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default model;
|