Compare commits

..

No commits in common. "1503d2db294c4e8b0af3dd05f2d0561abbb6f617" and "ac004127b5e951df47b4ccfd29e5c7e2ab65b39b" have entirely different histories.

4 changed files with 7 additions and 9 deletions

View File

@ -143,10 +143,9 @@ Inference speeds will vary greatly depending on the GPU and the model used.
With the [rocm](../configuration/object_detectors.md#amdrocm-gpu-detector) detector Frigate can take advantage of many discrete AMD GPUs. With the [rocm](../configuration/object_detectors.md#amdrocm-gpu-detector) detector Frigate can take advantage of many discrete AMD GPUs.
| Name | YOLOv9 Inference Time | YOLO-NAS Inference Time | | Name | YOLOv9 Inference Time | YOLO-NAS Inference Time |
| --------- | --------------------- | ------------------------- | | -------- | --------------------- | ------------------------- |
| AMD 780M | ~ 14 ms | 320: ~ 30 ms 640: ~ 60 ms | | AMD 780M | ~ 14 ms | 320: ~ 30 ms 640: ~ 60 ms |
| AMD 8700G | | 320: ~ 20 ms 640: ~ 40 ms |
## Community Supported Detectors ## Community Supported Detectors

View File

@ -68,7 +68,6 @@
"dropInstructions": "Drag and drop an image here, or click to select", "dropInstructions": "Drag and drop an image here, or click to select",
"maxSize": "Max size: {{size}}MB" "maxSize": "Max size: {{size}}MB"
}, },
"nofaces": "No faces available",
"readTheDocs": "Read the documentation", "readTheDocs": "Read the documentation",
"trainFaceAs": "Train Face as:", "trainFaceAs": "Train Face as:",
"trainFace": "Train Face", "trainFace": "Train Face",

View File

@ -390,10 +390,10 @@ export default function FaceLibrary() {
</div> </div>
)} )}
</div> </div>
{pageToggle && faceImages?.length === 0 && pageToggle !== "train" ? ( {pageToggle && faceImages.length === 0 && pageToggle !== "train" ? (
<div className="absolute left-1/2 top-1/2 flex -translate-x-1/2 -translate-y-1/2 flex-col items-center justify-center text-center"> <div className="absolute left-1/2 top-1/2 flex -translate-x-1/2 -translate-y-1/2 flex-col items-center justify-center text-center">
<LuFolderCheck className="size-16" /> <LuFolderCheck className="size-16" />
{t("nofaces")} No faces available
</div> </div>
) : ( ) : (
pageToggle && pageToggle &&

View File

@ -819,7 +819,7 @@ function Timeline({
className={`${ className={`${
isDesktop isDesktop
? `${timelineType == "timeline" ? "w-[100px]" : "w-60"} no-scrollbar overflow-y-auto` ? `${timelineType == "timeline" ? "w-[100px]" : "w-60"} no-scrollbar overflow-y-auto`
: `overflow-hidden portrait:flex-grow ${timelineType == "timeline" ? "landscape:w-[100px]" : "landscape:w-[175px]"} ` : "overflow-hidden portrait:flex-grow landscape:w-[20%]"
} relative`} } relative`}
> >
<div className="pointer-events-none absolute inset-x-0 top-0 z-20 h-[30px] w-full bg-gradient-to-b from-secondary to-transparent"></div> <div className="pointer-events-none absolute inset-x-0 top-0 z-20 h-[30px] w-full bg-gradient-to-b from-secondary to-transparent"></div>
@ -855,7 +855,7 @@ function Timeline({
<div <div
className={cn( className={cn(
"scrollbar-container grid h-auto grid-cols-1 gap-4 overflow-auto p-4", "scrollbar-container grid h-auto grid-cols-1 gap-4 overflow-auto p-4",
isMobile && "sm:portrait:grid-cols-2", isMobile && "sm:grid-cols-2",
)} )}
> >
{mainCameraReviewItems.length === 0 ? ( {mainCameraReviewItems.length === 0 ? (