Added AI project

This commit is contained in:
2025-03-31 23:48:12 +02:00
parent a049dbcb2a
commit 26310a29d5
3 changed files with 19 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 568 KiB

View File

@@ -51,6 +51,12 @@
"desc": "I went for a second internship to Japan, at Fukushima National Institute of Technology. I assisted the Research team with the study on the perception of temporal seriality with the naked eye. My role was to create software able to perform various essentials transformations on videos.",
"button_text": "More about it",
"date": "From April 2024 to July 2024"
},
"trading_ai":{
"title": "Prices prediction AI",
"desc": "As part of my Master's degree studies, I am working on a research project, about stock market price prediction. This project is still ongoing, with encouraging results obtained for now.",
"button_text": "More about it",
"date": "From November 2024 to May 2025"
}
},
"tags":{

View File

@@ -37,6 +37,7 @@
import portfolioImg from "@/assets/img/portfolio.png";
import semanticSegmentationImg from '@/assets/img/semantic_segmentation.png';
import videoEditorSegmentationImg from '@/assets/img/video_editor.png';
import tradingAiImg from '@/assets/img/trading_ai.png';
import {useI18n} from 'vue-i18n';
const i18n = useI18n();
@@ -77,6 +78,18 @@
{title:i18n.t("home.projects.tags.bugs_only"), colour:tagsColours.bugs_only}
],
date: i18n.t("home.projects.project.portfolio.date")
},{
picture: tradingAiImg,
title: i18n.t("home.projects.project.trading_ai.title"),
desc:i18n.t("home.projects.project.trading_ai.desc"),
buttonText:i18n.t("home.projects.project.trading_ai.button_text"),
//buttonLink:"#",
tags:[
{title:i18n.t("home.projects.tags.active"), colour:tagsColours.active},
{title:i18n.t("home.projects.tags.research"), colour:tagsColours.research},
{title:i18n.t("home.projects.tags.school"), colour:tagsColours.school}
],
date: i18n.t("home.projects.project.trading_ai.date")
},{
picture: semanticSegmentationImg,
title: i18n.t("home.projects.project.semantic_segmentation.title"),