+ {t("frigatePlus.modelInfo.noModelsAvailable")}
+
+ ) : (
+ filteredModelEntries.map(([id, model]) => (
+
+ {new Date(model.trainDate).toLocaleString()}{" "}
+
+ {model.baseModel} {" ("}
+ {model.isBaseModel
+ ? t(
+ "frigatePlus.modelInfo.plusModelType.baseModel",
+ )
+ : t(
+ "frigatePlus.modelInfo.plusModelType.userModel",
+ )}
+ {")"}
+
+
+ {model.name} (
+ {model.width + "x" + model.height})
+
+
+ {t(
+ "frigatePlus.modelInfo.supportedDetectors",
+ )}
+ : {model.supportedDetectors.join(", ")}
+
+ {!isModelCompatible(model) && (
+
+ {t(
+ "detectorsAndModel.plusModel.requiresDetector",
+ {
+ detector:
+ model.supportedDetectors.join(
+ ", ",
+ ),
+ },
+ )}
+
+ )}
+
+ {id}
+
+
+ ))
)}
-