Add nn-from-scratch project

This commit is contained in:
2024-08-17 15:55:14 +02:00
parent 9b6917e066
commit 6edf5ee2a7
5 changed files with 23 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

View File

@ -0,0 +1,15 @@
<template>
<ProjectCard
:title="$t('nn_scratch.title')" :image="image" image_classes="dark:invert"
:links="[
{ label: 'Repository', url: 'https://github.com/NotXia/nn-from-scratch' }
]">
<p>{{ $t('nn_scratch.description') }}</p>
</ProjectCard>
</template>
<script setup lang="ts">
import image from "@/assets/images/projects/neural_network.png";
</script>

View File

@ -59,4 +59,7 @@ export default {
"pathfinding_visualizer.description": "Visualizer of some graph search algorithms.",
"sort_visualizer.description": "Visualizer of some sorting algorithms.",
"nn_scratch.title": "Neural networks from scratch",
"nn_scratch.description": "Automatic differentiation and basic neural network layers implemented from scratch using Numpy.",
}

View File

@ -59,4 +59,7 @@ export default {
"pathfinding_visualizer.description": "Visualizzazione di alcuni algoritmi di ricerca su grafi.",
"sort_visualizer.description": "Visualizzazione di alcuni algoritmi di ordinamento.",
"nn_scratch.title": "Reti neurali da zero",
"nn_scratch.description": "Differenziazione automatica e componenti base di una rete neurale implementati in Numpy.",
}

View File

@ -5,7 +5,8 @@
<h1 class="text-5xl font-bold text-center mb-5">{{ $t("projects") }}</h1>
<div class="grid grid-flow-row-dense grid-cols-12 m-auto justify-center [&>*]:px-5 [&>*]:py-5">
<NotXiaGithubio class="col-span-12" />
<NotXiaGithubio class="lg:col-span-8 row-span-1 col-span-12" />
<NNFromScratch class="lg:col-span-4 row-span-1 col-span-12" />
<TablutPlayer class="lg:col-span-4 row-span-1 col-span-12" />
<BScThesis class="lg:col-span-8 row-span-1 col-span-12" />
<WaveMap class="lg:col-span-4 lg:row-span-2 col-span-12" />