2022-09-28 10:58:58 +00:00
|
|
|
import {Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered, Parenthesis} from "@steffo/bluelib-react"
|
|
|
|
import type { NextPage, NextPageContext } from 'next'
|
|
|
|
import { Link } from '../../../components/link'
|
|
|
|
import { Warn1024 } from '../../../components/warn'
|
|
|
|
|
|
|
|
|
|
|
|
export async function getStaticProps(_context: NextPageContext) {
|
|
|
|
return {
|
|
|
|
props: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const Page: NextPage = () => {
|
|
|
|
return <>
|
|
|
|
<Heading level={2}>
|
|
|
|
Machine learning
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
2022-09-29 21:37:20 +00:00
|
|
|
<Box>
|
2022-09-28 10:58:58 +00:00
|
|
|
<Heading level={3}>
|
|
|
|
Premessa
|
|
|
|
</Heading>
|
|
|
|
<p>
|
2022-09-29 21:37:20 +00:00
|
|
|
Anche questo corso sembra interessante: spero solo di non impantanarmi nella matematica come al solito!
|
2022-09-28 10:58:58 +00:00
|
|
|
</p>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
<Chapter>
|
2022-09-29 21:37:20 +00:00
|
|
|
<Box>
|
2022-09-28 10:58:58 +00:00
|
|
|
<Heading level={3}>
|
|
|
|
Materiale raccolto
|
|
|
|
</Heading>
|
|
|
|
<p>
|
2022-09-29 21:37:20 +00:00
|
|
|
Sto seguendo le lezioni di questo corso, pertanto sto raccogliendo attivamente materiale.
|
2022-09-28 10:58:58 +00:00
|
|
|
</p>
|
|
|
|
<Chapter>
|
|
|
|
<Panel>
|
|
|
|
<Heading level={4}>
|
|
|
|
Appuntiweb
|
|
|
|
</Heading>
|
|
|
|
<Warn1024/>
|
|
|
|
<ListUnordered>
|
2022-10-03 09:38:28 +00:00
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year4/machinelearning/cenni">Cenni di Analisi 2</Link>
|
|
|
|
</ListUnordered.Item>
|
2022-09-28 10:58:58 +00:00
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year4/machinelearning/teoria">Appunti di teoria</Link>
|
|
|
|
</ListUnordered.Item>
|
|
|
|
</ListUnordered>
|
|
|
|
</Panel>
|
|
|
|
</Chapter>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Page
|