début du rapport

rapport
ludovic.castglia 4 months ago
parent 613992ab6e
commit a6a0233b4c

@ -80,6 +80,7 @@
display:flex; display:flex;
justify-content:center; justify-content:center;
border:0px; border:0px;
transform: translate(12.5%);
} }
.a { .a {
color:#f00; color:#f00;

@ -9,7 +9,6 @@ from knn import *
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
from random import * from random import *
# initialisation du modèle # initialisation du modèle
if (sys.argv[1] == "knn"): if (sys.argv[1] == "knn"):
model = Knn() model = Knn()

@ -0,0 +1,72 @@
<div class="titre">
<h1>
<span class="a">3NAR</span>
<span class="b">(n nearest neighbor avrage rapid)</span>
</h1>
<p>
par Ludovic CASTIGLIA
</p>
</div>
<section>
<h2>
Problématique
</h2>
<p>
</p>
</section>
<section>
<h2>
Algorithme et avantage par rapport à Knn
</h2>
<p>
</p>
</section>
<section>
<h2>
Cas d'uttilisation
</h2>
<p>
</p>
</section>
<section>
<h2>
Complexité
</h2>
<p>
</p>
</section>
<style>
.titre {
border-bottom: 1px solid;
padding: 3em;
}
h1 {
text-aligne: center;
display:flex;
justify-content:center;
border:0px;
transform: translate(12.5%);
}
.a {
color:#f00;
font-weight:900;
font-size:2em;
}
.b {
font-size:0.7em;
}
.titre p {
position:absolute;
right:15px;
}
h2 {
color: #ff7777;
border-bottom: 1px solid #fff;
}
</style>
Loading…
Cancel
Save