vanderlindenma

vanderlindenma

Context

I am experimenting with text embedding with the hope of implementing semantic similarity search inside a Phoenix application.

My target use case involves a user writing a short sentence (typically 5 to 30 words). In less than a few seconds, I want to present the user with similar sentences out of a collection of equally short sentences previously written by other users.

The test that puzzles me

As a first quick test of feasibility, I am playing with the example posted by @jonatanklosko at Add text embedding serving · Issue #206 · elixir-nx/bumblebee · GitHub

{:ok, model_info} = Bumblebee.load_model({:hf, "bert-base-uncased"}, architecture: :base)
{:ok, tokenizer} = Bumblebee.load_tokenizer({:hf, "bert-base-uncased"})

text = "Hello, world!"
inputs = Bumblebee.apply_tokenizer(tokenizer, text)

Axon.predict(model_info.model, model_info.params, inputs).hidden_state[0]

The code executes without error but when I run it locally on my machine (MacBookAir <4yo), the last line Axon.predict(model_info.model, model_info.params, inputs).hidden_state[0] takes more than 1 minute to complete.

In contrast, the Python equivalent presented at the top of the same GH thread (Add text embedding serving · Issue #206 · elixir-nx/bumblebee · GitHub) completes almost instantaneously (fractions of a second) on the same machine:

from transformers import AutoTokenizer, AutoModel
import torch

# Load pre-trained model tokenizer and model weights
tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased")
model = AutoModel.from_pretrained("bert-base-uncased")

# Tokenize input text
text = "Hello, world!"
tokens = tokenizer.encode(text, add_special_tokens=True, return_tensors="pt")

# Generate model embeddings
with torch.no_grad():
    embeddings = model(tokens)[0].squeeze(0)  # Remove batch dimension

# Print the embeddings for the first token
print(embeddings[0])

I am guessing this is not normal and I am doing something wrong. Any idea what that could be? Is there a better way to retrieve text embedding vectors than the script from Add text embedding serving · Issue #206 · elixir-nx/bumblebee · GitHub I am playing with?

Notes

  • I am using:
      {:bumblebee, "~> 0.5.3"},
      {:nx, "~> 0.7.0"},
  • The 1 minute runtime I am reporting above is for the last Axon.predict(model_info.model, model_info.params, inputs).hidden_state[0] step alone (does not include the other mode/tokenizer loading steps).
  • I did read through Nx vs. Python performance for sentence-transformer encoding. I am guessing my issue is different than what’s discussed there since that post is “only” discussing 2x slower running time compared to equivalent Python code (much lower than the delta I am experiencing => for my application, I’d be more than happy with 2x slower than the equivalent Python runtime I am experiencing).
  • Given my use case, since Python is fast enough, I realize I could let Python handle the embedding part and pick things up inside Phoenix after Python completes the embedding. But I’d prefer keeping it all in Elixir if possible.

Showing Posts 1 to 5

joelpaulkoch

joelpaulkoch

Hi, the first quick check when something is slow: do you set the backend as described here? Or do you compile the model as described in the post you linked?

vanderlindenma

vanderlindenma OP

Thanks a lot for the pointer @joelpaulkoch.

I unfortunately did not heed the warning at the top https://hexdocs.pm/bumblebee/Bumblebee.html:

(Can’t say it wasn’t emphasized enough :sweat_smile:).

So I was “just”:

  • Adding
 {:bumblebee, "~> 0.5.3"},
      {:nx, "~> 0.7.0"},

to my mix.exs.

I’ve started looking more carefully at the backend setup you linked to. Running out of time for today but I will provide updates once I have had time to look into it further.

joelpaulkoch

joelpaulkoch

Cool, looking forward to your updates!

jonatanklosko

jonatanklosko

Creator of Livebook

Hey, I think @joelpaulkoch is spot on, without backend all the operations run in pure Elixir, which is not meant for performance. So you want to set EXLA.Backend as the backend (config :nx, default_backend: EXLA.Backend or in a notebook Nx.global_default_backend(EXLA.Backend)).

For production, you also want to use a serving, in this case Bumblebee.Text.text_embedding and set compilation options, so that on startup the whole model is compiled into a single efficient computation (whereas backend dispatches every individual operation separately). Also, you may find this readme useful.

You can see Generating embeddings in the RAG docs, it includes the serving and also covers similarity lookup using the in-memory index via HNSWLib (or if you need persistence, you can use pgvector). Sidenote: since you know the sentences are short, you can compile for smaller sequence length, as in compile: [batch_size: ..., sequence_length: [32, 64]] (multiple values generate multiple versions of the computation and pick the shortest one that fits); batch size depends on how many concurrent requests you expect and how much the hardware can handle, you can probably start with something smaller, like 4 or even 1.

If anything is not clear or doesn’t work, let me know : )

vanderlindenma

vanderlindenma OP

Thanks a ton, @joelpaulkoch and @jonatanklosko. You were indeed spot on. Once I set up the backend to EXLA, everything started working as fast as expected.

@joelpaulkoch I accepted the answer from @jonatanklosko as it is more complete but really appreciate the earlier pointer nevertheless :folded_hands:

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews