mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-07-26 13:47:03 +02:00
Add model ID to Frigate+ settings page
This commit is contained in:
parent
ca5c714037
commit
d6c61bd002
@ -540,6 +540,7 @@
|
|||||||
},
|
},
|
||||||
"modelInfo": {
|
"modelInfo": {
|
||||||
"title": "Model Information",
|
"title": "Model Information",
|
||||||
|
"modelId": "Model ID",
|
||||||
"modelType": "Model Type",
|
"modelType": "Model Type",
|
||||||
"trainDate": "Train Date",
|
"trainDate": "Train Date",
|
||||||
"baseModel": "Base Model",
|
"baseModel": "Base Model",
|
||||||
|
@ -393,6 +393,7 @@ export interface FrigateConfig {
|
|||||||
all_attributes: [string];
|
all_attributes: [string];
|
||||||
plus?: {
|
plus?: {
|
||||||
name: string;
|
name: string;
|
||||||
|
id: string;
|
||||||
trainDate: string;
|
trainDate: string;
|
||||||
baseModel: string;
|
baseModel: string;
|
||||||
supportedDetectors: string[];
|
supportedDetectors: string[];
|
||||||
|
@ -113,6 +113,12 @@ export default function FrigatePlusSettingsView() {
|
|||||||
).toLocaleString()}
|
).toLocaleString()}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label className="text-muted-foreground">
|
||||||
|
{t("frigatePlus.modelInfo.modelId")}
|
||||||
|
</Label>
|
||||||
|
<p>{config.model.plus.id}</p>
|
||||||
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Label className="text-muted-foreground">
|
<Label className="text-muted-foreground">
|
||||||
{t("frigatePlus.modelInfo.baseModel")}
|
{t("frigatePlus.modelInfo.baseModel")}
|
||||||
|
Loading…
Reference in New Issue
Block a user