@@ -6,7 +6,7 @@ export interface Project {
66 description : string ;
77 category : "Chip Design" | "AI Hardware" | "IoT" | "Smart Manufacturing" | "TinyML" | "Spiking Neural Networks" ;
88 status : "Active" | "Completed" | "Discontinued" ;
9- image : string ;
9+ image ? : string ;
1010 githubLink ?: string ;
1111 year : number ;
1212 recruitingFor ?: boolean ;
@@ -20,7 +20,6 @@ export const projectsData: Project[] = [
2020 description : "SNN implementation in C for efficient spiking neural network computation with optimized performance and debugging capabilities." ,
2121 category : "Spiking Neural Networks" ,
2222 status : "Active" ,
23- image : "/media/projects/spikingc.png" ,
2423 githubLink : "https://github.com/example/spikingc" ,
2524 year : 2023 ,
2625 recruitingFor : true
@@ -31,7 +30,7 @@ export const projectsData: Project[] = [
3130 description : "SNN-based gesture recognition system developed during the November 2023 Hackathon with Fortiss." ,
3231 category : "Spiking Neural Networks" ,
3332 status : "Completed" ,
34- image : "/media/projects/gesture-recognition.png " ,
33+ image : "" ,
3534 year : 2023
3635 } ,
3736 {
@@ -40,7 +39,6 @@ export const projectsData: Project[] = [
4039 description : "Implementation of a Dense Layer with Leaky Integrate and Fire (LIF) neurons in SystemVerilog for FPGA deployment." ,
4140 category : "Chip Design" ,
4241 status : "Active" ,
43- image : "/media/projects/densespiking-rtl.png" ,
4442 year : 2023 ,
4543 recruitingFor : true
4644 } ,
@@ -50,7 +48,6 @@ export const projectsData: Project[] = [
5048 description : "Hardware acceleration for Vision Transformer models specialized for drone applications with optimization for size and power constraints." ,
5149 category : "AI Hardware" ,
5250 status : "Active" ,
53- image : "/media/projects/drone-vit.jpg" ,
5451 year : 2023
5552 } ,
5653 {
@@ -59,7 +56,6 @@ export const projectsData: Project[] = [
5956 description : "A mobile-optimized Vision Transformer model using spiking neural networks for efficient visual processing on edge devices." ,
6057 category : "Spiking Neural Networks" ,
6158 status : "Active" ,
62- image : "/media/projects/mobile-vit.jpg" ,
6359 year : 2023
6460 } ,
6561 {
@@ -68,7 +64,6 @@ export const projectsData: Project[] = [
6864 description : "An intelligent scheduling system for manufacturing industries that optimizes production processes and resource allocation using AI algorithms." ,
6965 category : "Smart Manufacturing" ,
7066 status : "Active" ,
71- image : "/media/projects/smart-scheduling.png" ,
7267 year : 2023 ,
7368 recruitingFor : true
7469 } ,
@@ -78,7 +73,6 @@ export const projectsData: Project[] = [
7873 description : "Development of a compiler that optimizes neural network models for various hardware accelerators, leveraging IREE (IR Execution Environment) technology." ,
7974 category : "AI Hardware" ,
8075 status : "Active" ,
81- image : "/media/projects/ai-compiler.png" ,
8276 githubLink : "https://github.com/example/ai-compiler-iree" ,
8377 year : 2023
8478 } ,
@@ -88,7 +82,6 @@ export const projectsData: Project[] = [
8882 description : "A custom processor design optimized for deep learning inference with minimal energy consumption for battery-powered devices." ,
8983 category : "Chip Design" ,
9084 status : "Discontinued" ,
91- image : "/media/projects/dl-processor.jpg" ,
9285 year : 2021
9386 }
9487] ;
0 commit comments