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>
47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
{{ define "main" }}
|
|
|
|
|
|
{{ if .Params.data }}
|
|
<div class="auto-container pt-3 pt-md-5 single-page">
|
|
<div class="row clearfix">
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ partial "benchmark_chart" . }}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .Params.filter_data }}
|
|
<div class="auto-container pt-3 pt-md-5 single-page">
|
|
<div class="row clearfix">
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ partial "benchmark_filter_chart" . }}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
<div class="auto-container pt-3 pt-md-2 mb-5 single-page">
|
|
<div class="row clearfix">
|
|
<!-- Content Side -->
|
|
<section class="col-lg-12 col-md-12 col-sm-12">
|
|
{{ .Scratch.Set "scope" "single" }}
|
|
<article class="article article_benchmarks article_narrow article_bb mb-4">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</article>
|
|
<div class="pt-3">{{ partial "author" . }}</div>
|
|
<div class="article__info mt-4">
|
|
<span class="d-inline-block mb-2 mb-md-0">
|
|
{{if .Date }}{{ .Date | time.Format ":date_long" }} | {{end}}
|
|
</span>
|
|
{{ partial "share-post" . }}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{ end }} |