Skip to content

Updated blog post title #1049

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image: https://postgresml.org/dashboard/static/images/blog/announcing_hnsw_suppo
image_alt: HNSW provides a significant improvement in recall speed compared to IVFFlat
---

# Announcing HNSW Support in Our SDK
# Speeding up vector recall by 5x with HNSW

<div class="d-flex align-items-center mb-4">
<img width="54px" height="54px" src="/dashboard/static/images/team/silas.jpg" style="border-radius: 50%;" alt="Author" />
Expand Down
4 changes: 2 additions & 2 deletions pgml-dashboard/src/api/docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ async fn blog_handler<'a>(path: PathBuf, cluster: &Cluster) -> Result<ResponseOk
cluster,
&path,
vec![
NavLink::new("Announcing HNSW Support in Our SDK")
.href("/blog/announcing-hnsw-support-in-our-sdk"),
NavLink::new("Speeding up vector recall by 5x with HNSW")
.href("/blog/speeding-up-vector-recall-by-5x-with-hnsw"),
NavLink::new("How-to Improve Search Results with Machine Learning")
.href("/blog/how-to-improve-search-results-with-machine-learning"),
NavLink::new("pgml-chat: A command-line tool for deploying low-latency knowledge-based chatbots: Part I")
Expand Down
2 changes: 1 addition & 1 deletion pgml-dashboard/src/components/navbar/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</li> -->
<% } %>
<li class="nav-item d-flex align-items-center">
<a class="nav-link p-0" href="/blog/announcing-hnsw-support-in-our-sdk">Blog</a>
<a class="nav-link p-0" href="/blog/speeding-up-vector-recall-by-5x-with-hnsw">Blog</a>
</li>
</ul>

Expand Down
4 changes: 2 additions & 2 deletions pgml-dashboard/src/components/navbar_web_app/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<div class="vr my-2 opacity-100 d-lg-block d-none" style="width: 2px"></div>

<li class="nav-item d-flex align-items-center">
<a class="nav-link p-lg-0" href="/blog/announcing-hnsw-support-in-our-sdk">Blog</a>
<a class="nav-link p-lg-0" href="/blog/speeding-up-vector-recall-by-5x-with-hnsw">Blog</a>
</li>

<% if !account_management_nav.links.is_empty() { %>
Expand Down Expand Up @@ -82,7 +82,7 @@
</li>

<li class="menu-item rounded-0 d-flex align-items-center">
<a href="/blog/announcing-hnsw-support-in-our-sdk">Blog</a>
<a href="/blog/speeding-up-vector-recall-by-5x-with-hnsw">Blog</a>
</li>

<% if !standalone_dashboard { %>
Expand Down
2 changes: 1 addition & 1 deletion pgml-dashboard/templates/layout/nav/top.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</li> -->
<% } %>
<li class="nav-item d-flex align-items-center">
<a class="nav-link p-0" href="/blog/announcing-hnsw-support-in-our-sdk">Blog</a>
<a class="nav-link p-0" href="/blog/speeding-up-vector-recall-by-5x-with-hnsw">Blog</a>
</li>
</ul>

Expand Down
4 changes: 2 additions & 2 deletions pgml-dashboard/templates/layout/nav/top_web_app.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="vr my-2 opacity-100 d-lg-block d-none" style="width: 2px"></div>

<li class="nav-item d-flex align-items-center">
<a class="nav-link p-lg-0" href="/blog/announcing-hnsw-support-in-our-sdk">Blog</a>
<a class="nav-link p-lg-0" href="/blog/speeding-up-vector-recall-by-5x-with-hnsw">Blog</a>
</li>

<% if !account_management_nav.links.is_empty() { %>
Expand Down Expand Up @@ -91,7 +91,7 @@
</li>

<li class="menu-item rounded-0 d-flex align-items-center">
<a href="/blog/announcing-hnsw-support-in-our-sdk">Blog</a>
<a href="/blog/speeding-up-vector-recall-by-5x-with-hnsw">Blog</a>
</li>

<% if !standalone_dashboard { %>
Expand Down