-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
97 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export default function WorkshopPage() { | ||
return ( | ||
<div className='max-w-6xl w-full px-6 xl:px-0'> | ||
<h1 className='mb-16 mt-16 text-3xl sm:text-4xl md:text-[42px]'>A 21. század műanyaga az AI - Workshop</h1> | ||
<div className='flex flex-col md:flex-row gap-8'> | ||
<div> | ||
<p className='text-stone-200 text-[20px] whitespace-pre-line'> | ||
A 21. század műanyaga a mesterséges intelligencia. Már előreláthatólag el fog árasztani mindent, és lépésről | ||
lépésre fel kell fedezzük (a mérnökök és a felhasználók) a tulajdonságait, hogy az általános használata | ||
milyen előnyökkel és hátrányokkal jár együtt. 2 órás gyakorlati workshopomban a résztvevőkkel együtt | ||
bemutatom a neurális hálók működését, eddig megismert tulajdonságait. A résztvevőkkel felépítünk egy kisebb | ||
képfelismerő hálót, majd a hálót felhasználva megismerjük a ma népszerű nagy nyelvi modelleket (ChatGPT, | ||
Gemini) biztonsági és etikai szempontok alapján. | ||
</p> | ||
<p className='mt-8 text-stone-200 text-[20px] whitespace-pre-line'>A részvétel regsiztrációhoz kötött ....</p> | ||
</div> | ||
<div className='flex flex-col items-center flex-shrink-0 text-center md:max-w-sm order-first md:order-last'> | ||
<img | ||
src='https://konf-api-staging.kir-dev.hu/cdn/public/MEDVE_17BB6XBGVH7Q2.webp' | ||
// TODO PROD LINK | ||
className='object-cover rounded-3xl w-[250px] h-[250px] sm:w-[308px] sm:h-[308px]' | ||
alt='Presentation Image' | ||
/> | ||
<p className='block mt-4 text-[32px] leading-tight font-bold text-white-900'>Bartos-Elekes Miklós</p> | ||
<p className='block mt-0.5 text-[20px] text-[#FFE500]'>LEGO Kör MI projektvezető, MSc hallgató</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import Link from 'next/link'; | ||
|
||
import { Tile } from './tile'; | ||
|
||
export function WorkshopTile() { | ||
return ( | ||
<Tile className='sm:col-span-3'> | ||
<Tile.Body> | ||
<h2 className='text-3xl sm:text-[34px]'>A 21. század műanyaga az AI</h2> | ||
<div className='flex flex-col gap-4 lg:gap-0 lg:flex-row w-full justify-between mt-4'> | ||
<p className='text-stone-200 text-[20px] whitespace-pre-line w-full'> | ||
2 órás gyakorlati workshop, amiben bemutatásra kerül a neurális hálók működése, eddig megismert | ||
tulajdonságaik, valamint a ma népszerű nagy nyelvi modellek biztonsági és etikai szempontjai. | ||
</p> | ||
|
||
<div className='flex flex-col items-center w-full'> | ||
<img | ||
src='https://konf-api-staging.kir-dev.hu/cdn/public/MEDVE_17BB6XBGVH7Q2.webp' | ||
className='object-cover rounded-3xl w-[200px] h-[200px]' | ||
alt='Workshop Image' | ||
/> | ||
<p className='block mt-4 text-[20px] leading-tight font-bold text-white-900 text-center'> | ||
Bartos-Elekes Miklós | ||
</p> | ||
<p className='block mt-0.5 text-[14px] text-[#FFE500]'>LEGO Kör MI projektvezető</p> | ||
</div> | ||
</div> | ||
<div className='flex w-full justify-center mt-8'> | ||
<Link href='/workshop' className='inline-flex items-center font-semibold text-xl text-white brand-link'> | ||
Részletek | ||
<svg | ||
className=' w-2.5 h-2.5 ms-2 rtl:rotate-180' | ||
aria-hidden='true' | ||
xmlns='http://www.w3.org/2000/svg' | ||
fill='none' | ||
viewBox='0 0 6 10' | ||
> | ||
<path | ||
stroke='currentColor' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
strokeWidth='2' | ||
d='m1 9 4-4-4-4' | ||
/> | ||
</svg> | ||
</Link> | ||
</div> | ||
</Tile.Body> | ||
</Tile> | ||
); | ||
} |