Skip to content

Commit

Permalink
updated the index and config pages.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelRoeder committed May 17, 2016
1 parent 6610b9e commit 4061556
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 19 deletions.
22 changes: 22 additions & 0 deletions src/main/webapp/WEB-INF/views/config.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@
</select>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<hr />
</div>
</div>
<!--Matching dropdown filled by loadMatching() function -->
<div class="form-group">
<label class="col-md-4 control-label" for="annotator">Matching</label>
Expand All @@ -103,12 +108,18 @@
</select>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<hr />
</div>
</div>
<!--Annotator dropdown filled by loadAnnotator() function -->
<div class="form-group">
<label class="col-md-4 control-label" for="annotator">Annotator</label>
<div class="col-md-4">
<select id="annotator" multiple="multiple" style="display: none;">
</select>
<hr />
<div>
<span> Or add another webservice via URI:</span>
<div>
Expand Down Expand Up @@ -146,12 +157,18 @@
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<hr />
</div>
</div>
<!--Dataset dropdown filled by loadDatasets() function -->
<div class="form-group">
<label class="col-md-4 control-label" for="datasets">Dataset</label>
<div class="col-md-4">
<select id="dataset" multiple="multiple" style="display: none;">
</select>
<hr />
<div>
<span> Or upload another dataset:</span>
<div>
Expand Down Expand Up @@ -182,6 +199,11 @@
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<hr />
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="datasets">Disclaimer</label>
<div class="checkbox">
Expand Down
46 changes: 27 additions & 19 deletions src/main/webapp/WEB-INF/views/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,42 @@
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>

<head>
<link rel='stylesheet' href='/gerbil/webjars/bootstrap/3.2.0/css/bootstrap.min.css'>
<script src="/gerbil/webjars/jquery/2.1.1/jquery.min.js"></script>
<link rel='stylesheet'
href='/gerbil/webjars/bootstrap/3.2.0/css/bootstrap.min.css'>
<script src="/gerbil/webjars/jquery/2.1.1/jquery.min.js"></script>
<script src="/gerbil/webjars/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="icon" type="image/png" href="/gerbil/webResources/gerbilicon_transparent.png">
<link rel="icon" type="image/png"
href="/gerbil/webResources/gerbilicon_transparent.png">
<style>
div.picture {
background-color: #fff;
border-radius: 6px;
}
</style>
</head>
<body class="container">
<%@include file="navbar.jsp"%>
<div class="jumbotron">
<div class="container">
<h1>GERBIL - General Entity Annotator Benchmark</h1>
<p>This is GERBIL. All your peanuts belong to me!</p>
<p>We present GERBIL, a general entity annotation system.
GERBIL offers an easy-to-use web-based platform for the agile
comparison of annotators using multiple datasets and uniform
measuring approaches. To add a tool to GERBIL, all the
end user has to do is to provide a URL to a REST interface
to its tool which abides by a given specification. The
integration and benchmarking of the tool against user-specified
datasets is then carried out automatically by the GERBIL platform.
Currently, our platform provides results for 9 annotators and
11 datasets with more coming. Internally, GERBIL is based on
the Natural Language Programming Interchange Format (NIF) and
provide Java classes for implementing APIs for datasets and
annotators to NIF.
<p>We present GERBIL, a general entity annotation system. GERBIL
offers an easy-to-use web-based platform for the agile comparison of
annotators using multiple datasets and uniform measuring approaches.
To add a tool to GERBIL, all the end user has to do is to provide a
URL to a REST interface to its tool which abides by a given
specification. The integration and benchmarking of the tool against
user-specified datasets is then carried out automatically by the
GERBIL platform. Currently, our platform provides results for 9
annotators and 11 datasets with more coming. Internally, GERBIL is
based on the Natural Language Programming Interchange Format (NIF)
and provide Java classes for implementing APIs for datasets and
annotators to NIF.
</div>

<div class="container">
<img src="/gerbil/webResources/gerbiloverview.png" alt="gerbil overview">

<div class="container picture">
<img src="/gerbil/webResources/gerbiloverview.png"
alt="gerbil overview">
</div>
</div>
</body>

0 comments on commit 4061556

Please sign in to comment.