1
0
Fork 0
mirror of https://github.com/qurator-spk/neat.git synced 2025-06-09 19:59:55 +02:00
neat/ner.edith.html

82 lines
2.7 KiB
HTML
Raw Normal View History

2019-07-26 17:49:44 +02:00
<!DOCTYPE html>
<html>
<head>
2019-07-29 18:19:36 +02:00
<meta charset="UTF-8">
<title>ner.edith</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
2019-07-29 18:19:36 +02:00
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.0.1/papaparse.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
2019-09-24 15:42:48 +02:00
<script type="text/javascript" src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
2019-07-29 18:19:36 +02:00
<style>
body{font-family:Verdana;font-size:16px}
table{table-layout:fixed;width:100%;text-align:center}
2019-07-29 18:19:36 +02:00
th{background-color:lightgray}
.editable:hover{background-color:yellow}
2019-07-29 18:19:36 +02:00
tr:hover{background-color:whitesmoke}
2019-07-30 13:09:35 +02:00
.ner_per{background-color:skyblue}
.ner_loc{background-color:goldenrod}
.ner_org{background-color:plum}
2019-07-30 13:57:03 +02:00
.ner_oth{background-color:lightgreen}
2019-09-20 15:45:57 +02:00
.ner_todo{background-color:turquoise}
2019-09-24 10:21:49 +02:00
.fit-image{
width: 100%;
object-fit: cover;
}
2019-09-24 15:42:48 +02:00
input[type=range]::-moz-focus-outer {
border: 0;
}
2019-07-29 18:19:36 +02:00
</style>
2019-07-26 17:49:44 +02:00
</head>
<body>
2019-07-29 18:19:36 +02:00
<div class="container-fluid">
<div class="row mt-5">
<div class="col-2">
<div id="file-region"></div>
</div>
<div class="col-8">
<div class="row">
<div class="col text-center">
2019-10-16 01:23:30 +02:00
<h3><a href="https://github.com/cneud/ner.edith" target="_blank">ner.edith</a>: <br/> named entity recognition editor in html</h3>
</div>
</div>
</div>
<div class="col-2">
</div>
</div>
<div class="row mt-3">
2019-09-23 08:37:42 +02:00
<div class="col-2" id="region-left">
2019-09-24 10:21:49 +02:00
<a href="" id="preview-link">
2019-10-16 22:08:13 +02:00
<img id="preview" alt="facsimile_preview" class="img-responsive fit-image"/>
2019-09-24 10:21:49 +02:00
</a>
</div>
<div class="col-8 text-center" id="tableregion">
Please upload a TSV (tab-separated-values) file in the GermEval2014 data format
<sup>[<a href="https://sites.google.com/site/germeval2014ner/data" target="_blank">i</a>]</sup>:
<br>
<br><br><br><br>
<input type="file" id="tsv-file" name="files"/><br><br>
</div>
2019-09-23 08:37:42 +02:00
<div class="col-2" id="region-right">
</div>
</div>
<div class="row mt-3">
<div class="col-2">
</div>
<div class="col-8 text-center" id="btn-region">
</div>
<div class="col-2">
</div>
</div>
</div>
<script src="ner-edith.js"></script>
2019-07-26 17:49:44 +02:00
</body>
2019-09-13 18:04:35 +02:00
</html>