mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-03 06:50:58 +00:00
Compare commits
No commits in common. "1503d2db294c4e8b0af3dd05f2d0561abbb6f617" and "ac004127b5e951df47b4ccfd29e5c7e2ab65b39b" have entirely different histories.
1503d2db29
...
ac004127b5
@ -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.
|
||||
|
||||
| Name | YOLOv9 Inference Time | YOLO-NAS Inference Time |
|
||||
| --------- | --------------------- | ------------------------- |
|
||||
| AMD 780M | ~ 14 ms | 320: ~ 30 ms 640: ~ 60 ms |
|
||||
| AMD 8700G | | 320: ~ 20 ms 640: ~ 40 ms |
|
||||
| Name | YOLOv9 Inference Time | YOLO-NAS Inference Time |
|
||||
| -------- | --------------------- | ------------------------- |
|
||||
| AMD 780M | ~ 14 ms | 320: ~ 30 ms 640: ~ 60 ms |
|
||||
|
||||
## Community Supported Detectors
|
||||
|
||||
|
||||
@ -68,7 +68,6 @@
|
||||
"dropInstructions": "Drag and drop an image here, or click to select",
|
||||
"maxSize": "Max size: {{size}}MB"
|
||||
},
|
||||
"nofaces": "No faces available",
|
||||
"readTheDocs": "Read the documentation",
|
||||
"trainFaceAs": "Train Face as:",
|
||||
"trainFace": "Train Face",
|
||||
|
||||
@ -390,10 +390,10 @@ export default function FaceLibrary() {
|
||||
</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">
|
||||
<LuFolderCheck className="size-16" />
|
||||
{t("nofaces")}
|
||||
No faces available
|
||||
</div>
|
||||
) : (
|
||||
pageToggle &&
|
||||
|
||||
@ -819,7 +819,7 @@ function Timeline({
|
||||
className={`${
|
||||
isDesktop
|
||||
? `${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`}
|
||||
>
|
||||
<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
|
||||
className={cn(
|
||||
"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 ? (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user