mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
Continued to write about hachinohe internship
This commit is contained in:
@@ -11,6 +11,49 @@
|
||||
<p>{{ $t("projects.semantic_segmentation.content.context.text") }}</p>
|
||||
<img :src="hachinoheKosenImg"/>
|
||||
</doubleRowHolder>
|
||||
<h2>{{ $t("projects.semantic_segmentation.content.semantic.title") }}</h2>
|
||||
<p>{{ $t("projects.semantic_segmentation.content.semantic.text") }}</p>
|
||||
|
||||
<div id="table_wrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ $t("projects.semantic_segmentation.content.semantic.table.model") }}</th>
|
||||
<th>{{ $t("projects.semantic_segmentation.content.semantic.table.accuracy") }}</th>
|
||||
<th>{{ $t("projects.semantic_segmentation.content.semantic.table.loss") }}</th>
|
||||
<th>{{ $t("projects.semantic_segmentation.content.semantic.table.process_time") }}</th>
|
||||
<th>{{ $t("projects.semantic_segmentation.content.semantic.table.year") }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Unet</td>
|
||||
<td>0.9233</td>
|
||||
<td>0.1898</td>
|
||||
<td>10 ms</td>
|
||||
<td>2015</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Segnet</td>
|
||||
<td>0.9681</td>
|
||||
<td>0.07575</td>
|
||||
<td>100 ms</td>
|
||||
<td>2016</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DeeplabV3</td>
|
||||
<td>0.9708</td>
|
||||
<td>0.06759</td>
|
||||
<td>15 ms</td>
|
||||
<td>2017</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p>{{ $t("projects.semantic_segmentation.content.semantic.result") }}</p>
|
||||
|
||||
<h2>{{ $t("projects.semantic_segmentation.content.human_recognition.title") }}</h2>
|
||||
<p>{{ $t("projects.semantic_segmentation.content.human_recognition.text") }}</p>
|
||||
</article>
|
||||
</template>
|
||||
|
||||
@@ -50,5 +93,25 @@
|
||||
min-width: 200px;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
#table_wrapper{
|
||||
margin-top: 20px;
|
||||
margin-bottom: 15px;
|
||||
width: 80%;
|
||||
min-width: 250px;
|
||||
overflow-x: auto !important;
|
||||
}
|
||||
th{
|
||||
font-size:1.3em;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
table,th,td{
|
||||
border: solid 1px white;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table{
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user