Skip to content

Commit

Permalink
Merge pull request #164 from qdrant/common-datasets
Browse files Browse the repository at this point in the history
Add Datasets section
  • Loading branch information
davidmyriel committed Jun 5, 2023
2 parents 186a8c0 + 0f531c1 commit b4d06ec
Show file tree
Hide file tree
Showing 7 changed files with 154 additions and 0 deletions.
9 changes: 9 additions & 0 deletions qdrant-landing/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,15 @@ keywords = "search engine, vector database, neural network, matching, filter, Sa
[menu.main.params]
external = true

[[menu.main]]
identifier = "datasets"
name = "Datasets"
weight = 8
parent = "resources"
url = "/datasets/"
[menu.main.params]
external = false

[[menu.main]]
identifier = "community"
name = "Community"
Expand Down
11 changes: 11 additions & 0 deletions qdrant-landing/content/datasets/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Common Datasets
description: Ready snapshots of some standard datasets which you can easily import into Qdrant.
keywords:
- embeddings
- vector embeddings
- vectors
- precomputed embeddings
- datasets
- dataset snapshots
---
52 changes: 52 additions & 0 deletions qdrant-landing/content/datasets/common-datasets.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
draft: false
id: 2
title: Common datasets snapshots
weight: 1
---

Understanding that creating embeddings every time can be a resource-intensive task, we have
devised a more efficient solution for you. In this section, we will regularly publish
snapshots of common public datasets often used for general or educational purposes. These
snapshots contain pre-computed vectors, critical for semantic search, that you can easily
import into your Qdrant instance. Our objective is to streamline your process and accelerate
your progress. Say goodbye to redundant operations and harness the power of Qdrant with
a simple [snapshot import](/documentation/concepts/snapshots/).

<table>
<thead>
<tr>
<th>Dataset</th>
<th>Description</th>
<th>Model</th>
<th>Dimensionality</th>
<th>Size</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2">Arxiv.org</th>
<th>Only titles</th>
<td><a href="https://huggingface.co/hkunlp/instructor-xl">InstructorXL</a></td>
<td>768</td>
<td>7.1 GB</td>
<td>
<a href="https://storage.googleapis.com/common-datasets-snapshots/arxiv_titles-3083016565637815127-2023-05-29-13-56-22.snapshot">
<img src="/images/icons/download.svg" alt="download" />
</a>
</td>
</tr>
<tr>
<th>Only abstracts</th>
<td><a href="https://huggingface.co/hkunlp/instructor-xl">InstructorXL</a></td>
<td>768</td>
<td>8.4 GB</td>
<td>
<a href="https://storage.googleapis.com/common-datasets-snapshots/arxiv_abstracts-3083016565637815127-2023-06-02-07-26-29.snapshot">
<img src="/images/icons/download.svg" alt="download" />
</a>
</td>
</tr>
</tbody>
</table>
10 changes: 10 additions & 0 deletions qdrant-landing/themes/qdrant/layouts/datasets/baseof.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{{- partial "header.html" . -}}

{{- partial "second_header.html" . -}}

<div id="content">
{{ block "main" . }}{{ end }}
</div>

{{ partial "contact-section" . }}
{{- partial "footer.html" . -}}
33 changes: 33 additions & 0 deletions qdrant-landing/themes/qdrant/layouts/datasets/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{{ define "main" }}

{{ range $i,$p := where .Data.Pages "Section" "datasets" }}


<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 }}

<article class="article article_benchmarks article_narrow">
{{ .Content }}
</article>
</section>
</div>
</div>


{{ end }}
{{ end }}
24 changes: 24 additions & 0 deletions qdrant-landing/themes/qdrant/layouts/datasets/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{{ define "main" }}

<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" }}&nbsp;&nbsp;|&nbsp;&nbsp;{{end}}
</span>
{{ partial "share-post" . }}
</div>
</section>
</div>
</div>


{{ end }}
15 changes: 15 additions & 0 deletions qdrant-landing/themes/qdrant/static/images/icons/download.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b4d06ec

Please sign in to comment.