import React from 'react'; import PanelContainer from '../ui/PanelContainer'; import GlowingBox from '../ui/GlowingBox'; import { Layers } from 'lucide-react'; const DeepLayerPanel: React.FC = () => { return (
{/* Layer 1: Edges and Corners */}

Layer 1: Edges & Corners

{Array(8).fill(0).map((_, i) => (
))}
{/* Layer 2: Simple Shapes */}

Layer 2: Simple Shapes

{Array(8).fill(0).map((_, i) => (
{i % 4 === 0 && (
)} {i % 4 === 1 && (
)} {i % 4 === 2 && (
)} {i % 4 === 3 && (
)}
))}
{/* Layer 3: Complex Features */}

Layer 3: Complex Features

{Array(8).fill(0).map((_, i) => (
{i === 0 && (
)} {i === 1 && (
)} {i === 2 && (
)} {i > 2 && (
)}
))}

Hierarchy of Features

Early Layers

Detect low-level features like edges, corners, and basic textures. These are the building blocks for more complex pattern recognition.

Middle Layers

Combine edges and textures into more complex patterns and shapes like circles, squares, and simple object parts.

Deep Layers

Recognize complex, high-level concepts specific to the training dataset, such as eyes, faces, or entire objects.

); }; export default DeepLayerPanel;