mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
* new: add filtered search bench draft * new: update filtered search benchmark post * new: render article * refactoring: add newlines * new: add filtered search bench file structure, add chart * fix: fix plot preselect * fix: fix canvas id * debug: debug js * debug: add benchmark filter search script to header * fix: fix filter search plot selection * new: update benchmark data * refactoring: remove commented code * fix: fix bench data * new: fix labels order * new: sort dataset labels * new: add some text * fix: fix descriptions * debug: fix mapping not allowed yaml parsing error * new: update bench data * fix: fix dataset name * new: update bench data * fix: fix qdrant kw small vocab * text for the articles * upd text * fix: fix typos * new: replace bars with scatter plots * fix: fix method calls * debug: add initializer * fix: replace debug const with variable * new: remove data based split, remain only one plot * fix: remove geo data for milvus * new: remove range data for weaviate * new: remove int 2048 for milvus, as it crashes at the moment * upd graphs * link --------- Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com>
51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
{{ define "main" }}
|
|
|
|
{{ range $i,$p := where .Data.Pages "Section" "benchmarks" }}
|
|
|
|
|
|
<div class="auto-container pt-3 pt-md-5 single-page">
|
|
<div class="row clearfix">
|
|
<!-- Content Side -->
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ .Scratch.Set "scope" "single" }}
|
|
{{ $link := .Permalink }}
|
|
{{ if .Params.external_link }}
|
|
{{ $link = .Params.external_link }}
|
|
{{ end }}
|
|
|
|
|
|
{{ if .Description }}
|
|
<article class="article article_benchmarks article_narrow">
|
|
<h1>{{ .Title }}</h1>
|
|
<p>{{ .Description }}</p>
|
|
</article>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .Params.data }}
|
|
<div class="row clearfix">
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ partial "benchmark_chart" . }}
|
|
</section>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if .Params.filter_data }}
|
|
<div class="row clearfix">
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ partial "benchmark_filter_chart" . }}
|
|
</section>
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
<article class="article article_benchmarks article_narrow">
|
|
{{ .Content }}
|
|
</article>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{ end }}
|
|
{{ end }} |