mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-12 03:17:36 +03:00
26 lines
491 B
TypeScript
26 lines
491 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const model: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
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"],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default model;
|