-
-
+
+ {loadingState.loading && loadingState.progress < 100 && (
+
+
+ Loading model...
+
+
+
+ )}
+
+ {error && (
+
+ Error
+ {error}
+
+ )}
+
+
+
+
+
+ {imagePreview && (
+ <>
+
+ >
+ )}
-
- {imagePreview && (
-
-
Image Preview:
-
-
- )}
-
- {isAnalyzing &&
}
-
- {error &&
{error}
}
-
- {predictions.length > 0 && (
-
-
Results:
-
-
-
-
- )}
+
+ {isAnalyzing && }
+
+ {predictions.length > 0 && (
+
+
Results:
+
+
+
+
+ )}
diff --git a/src/components/pages/home/TensorFlowModels.js b/src/components/pages/home/TensorFlowModels.js
index c0861b7..4de8e27 100644
--- a/src/components/pages/home/TensorFlowModels.js
+++ b/src/components/pages/home/TensorFlowModels.js
@@ -12,28 +12,30 @@ import { ArrowRight, Brain, Camera, Mic, FileText } from "lucide-react";
const models = [
{
title: "MobileNet",
- description: "Classify images into predefined categories",
- icon: Camera,
+ description:
+ "A lightweight, efficient deep learning model designed for mobile and embedded devices, optimized for tasks like image classification and object detection.",
+ // icon: Camera,
link: "/mobilenet",
},
{
- title: "Natural Language Processing",
- description: "Process and analyze human language",
- icon: FileText,
- link: "/models/nlp",
- },
- {
- title: "Speech Recognition",
- description: "Convert spoken language into text",
- icon: Mic,
- link: "/models/speech-recognition",
- },
- {
- title: "Neural Network",
- description: "Build and train custom neural networks",
- icon: Brain,
- link: "/models/neural-network",
+ title: "COCO-SSD",
+ description:
+ "An object detection model trained on the COCO dataset, capable of identifying and localizing multiple objects in images in real-time.",
+ // icon: FileText,
+ link: "/coco-ssd",
},
+ // {
+ // title: "Speech Recognition",
+ // description: "Convert spoken language into text",
+ // icon: Mic,
+ // link: "/models/speech-recognition",
+ // },
+ // {
+ // title: "Neural Network",
+ // description: "Build and train custom neural networks",
+ // icon: Brain,
+ // link: "/models/neural-network",
+ // },
];
export default function TensorFlowModels() {
@@ -43,9 +45,9 @@ export default function TensorFlowModels() {
{models.map((model, index) => (
- */}
{model.title}
{model.description}