Skip to content

Commit

Permalink
coco ssd model implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
nisalrenuja committed Nov 4, 2024
1 parent fff222e commit baee9f2
Show file tree
Hide file tree
Showing 5 changed files with 345 additions and 46 deletions.
133 changes: 88 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@tensorflow-models/coco-ssd": "^2.2.3",
"@tensorflow-models/mobilenet": "^2.1.1",
"@tensorflow/tfjs": "^4.21.0",
"@tensorflow/tfjs": "^4.22.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.452.0",
Expand Down
13 changes: 13 additions & 0 deletions src/app/coco-ssd/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export const metadata = {
title: "Tensor Hub",
description:
"A central hub for AI-powered analysis using TensorFlow.js models",
};

export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}
Loading

0 comments on commit baee9f2

Please sign in to comment.