Qdrant - A Search Engine in Rust - Arnaud Gourlay - Rust Linz March 2023

Sdílet
Vložit
  • čas přidán 5. 09. 2024

Komentáře • 7

  • @stevenhe3462
    @stevenhe3462 Před rokem +1

    Sounds so much easier than it actually is. Great job!

  • @elgoleminculto
    @elgoleminculto Před rokem +1

    It is so interesting the analysis about vector operations on rust, SIMD required, operate on slices, forget about simple iter+zip+map thing

  • @KirillLykov
    @KirillLykov Před rokem +1

    would be intersting to benchmark std locks vs parking_lot. Interestingly, async is never mentioned

  • @yorailevi6747
    @yorailevi6747 Před rokem

    I am still confused how one creates the embedding in the first place

    • @HNXakido
      @HNXakido Před rokem

      The final layer of a neural network before making its prediction can be used as a vector representation (embedding).

    • @RyanRuckley
      @RyanRuckley Před rokem +1

      You use an AI model like an LLM. I’m using RustBERT which has an embedding function.