nopaque/app/templates/main/_manual/03_dashboard.html.j2

52 lines
2.1 KiB
Plaintext
Raw Normal View History

2024-05-27 14:58:51 +00:00
<h2>Dashboard</h2>
2022-05-17 13:31:05 +00:00
<div class="row">
<div class="col s12 m4">
2024-05-27 14:58:51 +00:00
<br class="hide-on-small-only">
2022-05-17 13:31:05 +00:00
<img alt="Dashboard" class="materialboxed responsive-img" src="{{ url_for('static', filename='images/manual/dashboard.png') }}">
</div>
2024-05-27 14:58:51 +00:00
2022-05-17 13:31:05 +00:00
<div class="col s12 m8">
<p>
The <a href="{{ url_for('main.dashboard') }}">dashboard</a> provides a central overview of all resources assigned to the
user. These are <a href="{{ url_for('main.dashboard', _anchor='corpora') }}">corpora</a> and created <a href="{{ url_for('main.dashboard', _anchor='jobs') }}">jobs</a>. Corpora are freely composable
annotated text collections and jobs are the initiated file processing
2023-12-05 13:42:38 +00:00
procedures. One can search for jobs as well as corpus listings using
2022-05-17 13:31:05 +00:00
the search field displayed above them.
</p>
</div>
2024-05-27 14:58:51 +00:00
</div>
<div class="row">
2022-05-17 13:31:05 +00:00
<div class="col s12 m6">
<div class="card">
<div class="card-content">
<span class="card-title"><i class="nopaque-icons">I</i> Corpus</span>
<p>
A corpus is a collection of texts that can be analyzed using the
Corpus Analysis service. All texts must be in the verticalized text
2023-12-05 13:42:38 +00:00
file format, which can be obtained via the Natural Language
Processing service. It contains, in addition to the text,
2022-05-17 13:31:05 +00:00
further annotations that are searchable in combination with optional
2023-12-05 13:42:38 +00:00
metadata that can be added during your analysis.
2022-05-17 13:31:05 +00:00
</p>
</div>
</div>
</div>
2024-05-27 14:58:51 +00:00
2022-05-17 13:31:05 +00:00
<div class="col s12 m6">
<div class="card">
<div class="card-content">
<span class="card-title"><i class="nopaque-icons">J</i> Job</span>
<p>
A job is a construct that represents the execution of a service.
It stores input files, output files, processing status, and options
selected during creation. After submitting a job, you get redirected
to a job overview page. This can be accessed again via the job list
on the dashboard. Jobs will be deleted three months after creation,
so we encourage you to download the results after a job is completed.
</p>
</div>
</div>
</div>
</div>