mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-25 09:50:14 +00:00

* add time and perf benchmark for es * Add retriever benchmarking * Add Reader benchmarking * add nq to squad conversion * add conversion stats * clean benchmarks * Add link to dataset * Update imports * add first support for neg psgs * Refactor test * set max_seq_len * cleanup benchmark * begin retriever speed benchmarking * Add support for retriever query index benchmarking * improve reader eval, retriever speed benchmarking * improve retriever speed benchmarking * Add retriever accuracy benchmark * Add neg doc shuffling * Add top_n * 3x speedup of SQL. add postgres docker run. make shuffle neg a param. add more logging * Add models to sweep * add option for faiss index type * remove unneeded line * change faiss to faiss_flat * begin automatic benchmark script * remove existing postgres docker for benchmarking * Add data processing scripts * Remove shuffle in script bc data already shuffled * switch hnsw setup from 256 to 128 * change es similarity to dot product by default * Error includes stack trace * Change ES default timeout * remove delete_docs() from timing for indexing * Add support for website export * update website on push to benchmarks * add complete benchmarks results * new json format * removed NaN as is not a valid json token * versioning for docs * unsaved changes * cleaning * cleaning * Edit format of benchmarks data * update also jsons in v0.4.0 Co-authored-by: brandenchan <brandenchan@icloud.com> Co-authored-by: deepset <deepset@Crenolape.localdomain> Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai>
58 lines
1.2 KiB
HTML
58 lines
1.2 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = _('Overview') %}
|
|
{% block body %}
|
|
<h1>Haystack Documentation</h1>
|
|
<p>
|
|
{{ _('Welcome! This is') }}
|
|
{% block description %}{{ _('the documentation for') }} Haystack
|
|
{% endblock %}.
|
|
</p>
|
|
{% block tables %}
|
|
<h2>Haystack</h2>
|
|
<table class="contentstable" align="center">
|
|
<tr>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="">
|
|
What can Haystack do?
|
|
</a>
|
|
<br />
|
|
</p>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="">
|
|
Conceptual overview
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Getting started</h2>
|
|
<table class="contentstable" align="center">
|
|
<tr>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="">
|
|
Installation guides
|
|
</a>
|
|
</p>
|
|
</td>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("ddocs/views/intro") }}">
|
|
Tutorial
|
|
</a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Links</h2>
|
|
<table class="contentstable" align="center"><tr>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="">Download Haystack</a></p>
|
|
</td></tr>
|
|
</table>
|
|
{% endblock %}
|
|
{% endblock %}
|