Skip to content

Commit 5cb8be9

Browse files
Update project category to include 'AI Software'
1 parent df20433 commit 5cb8be9

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

Source code/src/data/projectsData.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export interface Project {
44
id: string;
55
title: string;
66
description: string;
7-
category: "Chip Design" | "AI Hardware" | "IoT" | "Smart Manufacturing" | "TinyML" | "Spiking Neural Networks";
7+
category: "Chip Design" | "AI Hardware" | "IoT" | "AI Software" | "TinyML" | "Spiking Neural Networks";
88
status: "Active" | "Completed" | "Discontinued";
99
image?: string;
1010
githubLink?: string;
@@ -60,7 +60,16 @@ export const projectsData: Project[] = [
6060
category: "Spiking Neural Networks",
6161
status: "Completed",
6262
year: 2023
63-
}
63+
},
64+
{
65+
id: "6",
66+
title: "Neural Network Quantization Benchmarking",
67+
description: "Systematic comparison of quantization methods across multiple deep learning architectures.",
68+
category: "AI Software",
69+
status: "Active",
70+
year: 2025,
71+
recruitingFor: true
72+
},
6473
];
6574

6675
// Helper functions for common data operations

0 commit comments

Comments
 (0)