RAG But Better: Rerankers with Cohere AI

Поділитися
Вставка

КОМЕНТАРІ • 104

  • @slayermm1122
    @slayermm1122 7 місяців тому +7

    cohere just released rerank3 and it wokred increiblely fantastic with openai's embedding 3 model; thanks for your kind intro

  • @marlonfraile1424
    @marlonfraile1424 Місяць тому

    I really like the way you explain this topic. You are logical, accurate and clear in terms or potential benefits and limitations. Thanks a lot!

  • @justinwlin
    @justinwlin Рік тому +7

    You’ve got top notch editing + technical explanations and none of that is easy. The amt of work to create a 20 min video, and be cohesive on such a topic is amazing. Thanks! 🔥 all ur videos are so helpful and just interesting to watch and learn

  • @real-ethan
    @real-ethan 9 місяців тому +3

    My approach is letting the LLM summarize the user's input first, the prompt could be written as: "The summary of the user's request to semantically search relevant documents in English." The output of the LLM's summarization can then be used to query the vector database after embedding. This approach may potentially increase the accuracy of retrieval.

    • @edwardmitchell6842
      @edwardmitchell6842 8 місяців тому

      How would an LLM know how to optimize for semantic search? I would expect an expansion on the ideas would be better.
      I need to finish my LLM Ops to get the answer,

    • @real-ethan
      @real-ethan 8 місяців тому

      ​@@edwardmitchell6842
      The typical process we currently observe for Retrieval-Augmented Generation (RAG) is as follows:
      1. After segmenting the document, embedding is directly performed, and the results are stored in the vector database.
      2. For user inputs or queries, embedding is directly carried out, and a similarity search is conducted within the vector database.
      It is a peculiar solution to rely solely on mathematical similarity matching for a single question and multiple factual paragraphs. As humans, when addressing a customer's request or solving a problem, we are unlikely to simply copy and paste the original question into Google's search box and hit enter. Instead, we tend to abstract and summarize the question and requirements before conducting a Google search.
      To achieve more precise content retrieval, my personal approach involves:
      1. After segmenting the document, each paragraph undergoes summarization using a Language Model (LLM). This summary is then embedded and treated as a comprehensive index for the original document. Together with the original document paragraphs, this summary index is stored in the vector database. During subsequent retrieval and matching processes, the focus is solely on this summarization index, streamlining the matching operation.
      2. For user input/questions, a summary is generated using the LLM, embedded, and then queried against the vector database to match the summary index of each document paragraph. After retrieving multiple documents, the results are then evaluated and selected by the LLM, ultimately producing the answer.
      The current Rag demos and new services, such as rerank provided by community, are all efforts focused on QUERYING. Perhaps we should explore more in terms of how to store, organize, and index documents.
      An additional hidden benefit of this approach is that, assuming our documents are in English, if a user inputs a Chinese question, direct embedding would inevitably fail to retrieve any content. Through summarization and subsequent embedding, we can translate the original input into English before processing.😄

  • @jantuitman
    @jantuitman Рік тому +11

    I learned a lot from this, thank you. You say you plan a series, and you were talking about other topics for the series but these other topics you mentioned were not about rerankers. I noted that this video treats rerankers as black boxes so you could even expand the series. I for sure would be interested in: what are the most recent reranking models, how doe rerankers work, is it feasible to make a reranker yourself or does this require, just like a transformer, that you scrape the entire language / internet? In other words, this video was very interesting, but now I know about rerankers I have lots and lots of questions about rerankers.

  • @gitmaxd
    @gitmaxd Рік тому +5

    Each video gets better! Thank you for your work!

  • @narayangopalmaharjan
    @narayangopalmaharjan Рік тому +1

    Thank you for this video, been stuck in RAG realm with llama index and not satisfied, I thought similar reranking but manually, i will try cohere today instead

  • @Cdaprod
    @Cdaprod Рік тому

    My god, thank you 🙏 as someone that only rebuilds the wheel, your content is very much appreciated.

  • @adityavd97
    @adityavd97 6 місяців тому

    Thanks man. You are improving my hobby projects in real time.

  • @jellederijke
    @jellederijke Рік тому +3

    Top notch material, James. Much appreciated 🎉🎉 Really curious to see what kind of difference this makes in my projects. Thanks!

    • @anandteerthrparvatikar5359
      @anandteerthrparvatikar5359 Рік тому

      Totally

    • @jamesbriggs
      @jamesbriggs  Рік тому +4

      Glad it helps - may want to try retrieval + reranker system for improved name recall 😅

    • @anandteerthrparvatikar5359
      @anandteerthrparvatikar5359 Рік тому

      You are literally educating corporate people. Waiting for next session, Thanks for the efforts

    • @jellederijke
      @jellederijke Рік тому

      ​@@jamesbriggshah really Sorry James 😂 I have just reranked the names in my RAG

  • @matteomarjanovic
    @matteomarjanovic Рік тому +7

    Hi, thank you so much for that content! Do you think that parameters like document chunks size and overlapping are important for RAG accuracy? Should we fine-tune them in some way?

  • @Jandodev
    @Jandodev Рік тому

    I've been doing this with transformers I think theirs a alot to think about with doing this efficiently but it does get the best results!

  • @Ishant875
    @Ishant875 5 місяців тому +1

    Can anyone explain this. Why we are using reranker to rank, is it not the work of retriever(to rank on basis of cosine similarty or something else, and return the relavant chunks)?

  • @fra4897
    @fra4897 Рік тому +12

    any benchmark? otherwise is kinda of very empirical and only seems like a sponsored video by Cohere

    • @matteomarjanovic
      @matteomarjanovic Рік тому +1

      Good point. Do you know about any possibly useful metric/benchmark?

    • @jamesbriggs
      @jamesbriggs  Рік тому +3

      no sponsor from Cohere, I'm sharing what I do in production to make search better

    • @jamesbriggs
      @jamesbriggs  Рік тому +6

      there are many benchmarks comparing bi-encoders (embedding models) to crossencoders (rerankers), but I'm not aware of any for Cohere's model compared directly to ada-002. Nonetheless you can read here txt.cohere.com/rerank/ (it only shows comparison with elastic)

    • @fra4897
      @fra4897 Рік тому +1

      @@jamesbriggs thanks a lot for the reply, so in production you push things after an empirical evaluation? Would it be possible to have a link to some benchmarks? Thanks a lot again

    • @jamesbriggs
      @jamesbriggs  Рік тому +4

      @@fra4897 yeah it's a lot of fast moving projects for me at the moment, so we do a lot of empirical assessments, for reranking you can see benchmarks for some of the best performing embedding + reranker models here huggingface.co/BAAI/bge-reranker-large#baai-embedding
      They unfortunately don't compare reranker to encoder directly beyond a few statements on rerankers being more accurate - they do explain in better language than I the reason for this though

  • @LoVeRSaMa
    @LoVeRSaMa 11 місяців тому +1

    Any chance you can show examples with OpenSource re ranking like: JinaAI-v2-base-en
    for example?

  • @Shaunmcdonogh-shaunsurfing
    @Shaunmcdonogh-shaunsurfing Рік тому +2

    You mentioned some better approaches than reranking. Any hints as to what that might be (curious to know if it involves fine tuning the LLM with the data too)

  • @harisjaved1379
    @harisjaved1379 10 місяців тому

    Have been doing this for few years now. Good video but you should cover bi-encoders vs cross encoder as this is one of the best reranking techniques and also talk a bit about FAISS.

  • @samwilletts9390
    @samwilletts9390 Рік тому +1

    Great video, looking forward to more on this!

  • @timkoehler86
    @timkoehler86 10 місяців тому

    Great video!
    Btw what software are you actually using to show/explain the concept? I really like the look of it.

  • @Shaunmcdonogh-shaunsurfing
    @Shaunmcdonogh-shaunsurfing Рік тому

    Thank you for making this. Fascinating.

  • @enkiube
    @enkiube 7 місяців тому

    Hey James, great great series on Retrieval Augmented Generation... One question, having looked at the notebook and the video, why don't we avoid vector embedding and have cohere's rerank to do the job for us? I did test the idea over a group of pdf documents and it seems like the performance was significantly better particularly considering that we pass the entire text altogether to cohere API instead of breaking them down into chunks.
    I understand there can be cost implications involved but considering the free cohere pricing isn't that a better approach? Afterall, any reranking you perform on top of results from pinecone is somewhat at the mercy of how well you retrieve the original vectors.
    Would appreciate your thoughts.

  • @alejandrovelez2083
    @alejandrovelez2083 Рік тому

    Great content man!!! I have learned so much from you

  • @da-bb2up
    @da-bb2up 8 місяців тому

    Great video, James! :) What do you think is better if you compare optimizing stratagies? 1.finetuning the embedding model on your domain specific language,2 . use a hybrid search, which combines dense and sparse retrieval, 3.Reranking ? Or 4.Could you combine the three optimization strategies maybe? Thank you in advance for your answer. :) and another question: is reranking not pretty much the same as the hybrid search?(because it also uses also two search strategies but in a slitght different way - first it searches the data chunk candidates and than it searches out of candidates)

  • @bonadio60
    @bonadio60 Рік тому

    Very good content!! I will definitely try it. Thanks

  • @pythontok4192
    @pythontok4192 Рік тому

    Thank you for this James. I found that when I return more things in the context, the LLM also tries to make up answers that are an amalgation of several sources' context. Any ways around this, from your experience?

  • @narutocole
    @narutocole Рік тому +3

    Do you have any thoughts or recommendations for Opensource re-rankers? I've used 'cross-encoder/mmarco-mMiniLMv2-L12-H384-v1' for re-ranking. But I'm curious as to if anyone has using some of the recent LLMs and modifying them to work for Re-ranking similar to how SGPT modified EleutherAI/gpt-neo-125M

    • @jamesbriggs
      @jamesbriggs  Рік тому

      Hey Jordan! I haven't tested the open-source cross-encoders/rerankers for a long time - so I'm not sure - they generally get less attention than the encoder models but I'm sure there must be some good rerankers out there

    • @lachlanholland7157
      @lachlanholland7157 Рік тому

      I’m looking into using bge reranker large, however haven’t gotten it to work yet.

  • @RedCloudServices
    @RedCloudServices Рік тому

    James thank as always. I hope I am asking these questions with clarity. (1) You used a different encoder model ada 002 with Cohere LLM as the vector response model? (2) Huggingface have rankings for encoding models and rankings for LLMs but are there rankings for pairs of encoding:response LLMs pairs?

  • @dato007
    @dato007 11 місяців тому

    I don’t understand how re-ranking is adding anything. you’re giving it the same query again and they’ve already been matched with a vector similarity what additional information is using your improve the ranking? Thx!

  • @vinsentparamanantham5756
    @vinsentparamanantham5756 Рік тому

    Hi James, can you give as an example with openapi since we have compliance issues, we need to run against the locally hosted llama models and also locally hosted vector database.
    thank you

  • @tiagoc9754
    @tiagoc9754 10 місяців тому

    How much the vector store affects the RAG responses accuracy?

  • @hughesadam87
    @hughesadam87 Рік тому

    Have you done any videos on ETL or suggestiosn for getting data into RAG systems?
    I'd really love to start with an open-source project that is more opinionated and ready-made for RAG than just langchain. LLMware looks promising. Do you have any suggestions? Some framework that would have opinionated, deployable RAG systems that solve hard problems like: auth, reranking, doc ingestion/scrubbing etc...
    Something I can just fire up in k8s and start fiddling w/ ? Does this exist to your knowledge?
    Thanks for the great video

  • @GeigenAkademie
    @GeigenAkademie 9 місяців тому

    Nowadays the context length cab be ~32k - why reranking, if I could put all possible matches to the final answering step/llm? Therefore the answering itself does a kind of reranking of the contexts

  • @SanjeevKumar-hj1fb
    @SanjeevKumar-hj1fb Рік тому

    Thanks for the great videos. How does embedding work on numeric fields? Shall we use embeddings for non text fields?

  • @timmydaytona
    @timmydaytona Рік тому

    Great stuff! Thank you!

  • @RabeeQasem
    @RabeeQasem Рік тому

    can you do a tut on how to use falcon to chat with you data and use diffrent data loaders ( txt,pdf,json)?
    love you content

  • @tushaar9027
    @tushaar9027 Рік тому

    Hi James great video learned a lot, actually i was using multi query retriever in my approach and was seeing the slow inference speed because of overstuffing as you mentioned. Can you give more info on re ranking models, any free ones we can use in our projects.

  • @ganj0rm0n
    @ganj0rm0n Рік тому

    Awesome! I wonder if there is a way to use a re-ranker with low code tools like flowise.

  • @Youtube_premiumhquq
    @Youtube_premiumhquq 3 місяці тому

    why cant we just select relevant records according to index? do we need to select all records from top to bottom all the time?

  • @hetnon
    @hetnon 7 місяців тому

    I don't get the part that you feed both documents in the same transformer. If your transformer output is only 1 array, what are you comparing to? You have only 1 array to compare to... nothing? What did I miss?

  • @victorhenriquecollasanta4740
    @victorhenriquecollasanta4740 10 місяців тому

    amazing! can you make more enterprenerial videos, maybe on how to apply this knlowdge to build a business

  • @andikunar7183
    @andikunar7183 Рік тому

    Great content, thanks a lot!

  • @edvinbeqari7551
    @edvinbeqari7551 Рік тому

    I didn't understand how you get a similarity score from one transformer. Whats the hint?

  • @sanchaythalnerkar9736
    @sanchaythalnerkar9736 Рік тому +2

    Can we use llama index to improve the efficiency?

    • @jamesbriggs
      @jamesbriggs  Рік тому +5

      llama-index have a lot of great retrieval tooling - I haven't been able to dive too deeply into it yet but from what I've seen they (1) do support this type of retrieval (ie with reranking), and (2) can likely improve accuracy, but I don't think you can get much faster than what we do here

    • @sanchaythalnerkar9736
      @sanchaythalnerkar9736 Рік тому

      Why is the embedding taking so long?@@jamesbriggs

  • @TheOfficialWoover
    @TheOfficialWoover Рік тому

    That's GREAT! thank you!

  • @da-bb2up
    @da-bb2up 8 місяців тому

    ua-cam.com/video/Uh9bYiVrW_s/v-deo.html isn't the similarity score also calculated at this point at the end with cosinesimililarity just like without retriever or how is the similarity score exactly calculated?

  • @GiridharReddy-hb5nv
    @GiridharReddy-hb5nv Рік тому

    is there any open source way to do the reranking ?
    The content was great!

  • @bastabey2652
    @bastabey2652 6 місяців тому

    how does the ReRanker know it needs to return 3 documents with relevant information to the user's query?

    • @jamesbriggs
      @jamesbriggs  6 місяців тому

      we set the `top_n` parameter to `3`, logically the reranking scores every document, then we take the top 3 scoring docs

  • @matthewpublikum3114
    @matthewpublikum3114 Рік тому

    Are the reranking models specifically trained for the task, or are they decoder or encoder portion of an LLM?

    • @jamesbriggs
      @jamesbriggs  Рік тому

      yes they're fine-tuned specifically for calculating similarity scores - you take a pretrained transformer model, add 1-2 linear layers on to the top of the output logits of the model, and fine-tune on a dataset that would contain records like [sentence A, sentence B, similarity score]

  • @shaheerzaman620
    @shaheerzaman620 Рік тому

    awesome stuff!

  • @torstenkarstadt9785
    @torstenkarstadt9785 Рік тому

    Does Canopy support this rerankng approach?

    • @jamesbriggs
      @jamesbriggs  Рік тому

      I know it's on the roadmap, but it's not in there yet

  • @nishanthk7048
    @nishanthk7048 Рік тому

    Hey can anyone answer my question,
    While reranking it calculates relevance score again, so while calculating the score does cohere inferences the LLM or uses a algorithm?

    • @bastabey2652
      @bastabey2652 6 місяців тому

      I believe Cohere ReRank doesn't use a separate LLM model.. it relies on its algorithm/model

  • @fra4897
    @fra4897 Рік тому

    well the reranker will prob use a [CLS] token so still one vector so I don't get why you say that in the normal embedding we loose info but in the reranker no - weird. If you are sending the two documents each token will able to attend to the other, this could means the info is more accurate

    • @jamesbriggs
      @jamesbriggs  Рік тому +2

      you can read about bi-encoders (embedding models) and crossencoders (reranker), there is information compression with the bi-encoder approach as you are encoding generic embeddings, with the crossencoder you are feeding the query and original text, the transformer must then decide, on that specific query, how relevant the document is

    • @fra4897
      @fra4897 Рік тому

      @@jamesbriggs copy that - thanks a lot!

  • @nicholasliu-sontag1585
    @nicholasliu-sontag1585 Рік тому

    You describe the re-ranker transformer as more accurate because it doesn't encode the documents into vectors - but don't all transformers work off a vectors to begin with? Isn't it still working with the same vectors that are used to calculate similarity score?

    • @jamesbriggs
      @jamesbriggs  Рік тому

      I probably could have phrased better, there are two parts:
      1. Embedding models encode the full sequence into a single vector, transformers work with vectors but they contain a single vector for each token - but these will be compressed through a single layer before producing the similarity score, so there is still compression into a single vector happening, but...
      2. Reranker models have the full context, ie they see both the query and the document that they must compute similarity for. An embedding model must produce a single vector embedding for every possible query

    • @nicholasliu-sontag1585
      @nicholasliu-sontag1585 Рік тому

      makes sense. thanks for explaining!@@jamesbriggs

    • @masssurfski
      @masssurfski 10 місяців тому

      My first impression was that the need to rerank means that the rank was to optimal to begin with. Your explanation above helped me better understand this. Ultimately this capability should be integrated and not require a different tool.

  • @ackiamm
    @ackiamm Рік тому

    thanks sir

  • @elrecreoadan878
    @elrecreoadan878 Рік тому

    Hi, what approach would you suggest for a hotel or restaurant customer service bot? Maybe botpress + plugin like vectora + chatgpt?

  • @thedoctor5478
    @thedoctor5478 Рік тому

    I believe we have better than openai embeddings now. The leaderboard says so anyway. Also, backoff library is better for retries.

    • @heywrandom8924
      @heywrandom8924 Рік тому

      I did not watch the video but I am interested in knowing what leaderhoard you are referring to

    • @thedoctor5478
      @thedoctor5478 Рік тому

      on huggingface /spaces/mteb/leaderboard@@heywrandom8924

    • @jamesbriggs
      @jamesbriggs  Рік тому

      @@heywrandom8924 probably this one huggingface.co/spaces/mteb/leaderboard - I'll be talking about other embedding models in upcoming video, but yes it's true, ada-002 is far from best performing

    • @heywrandom8924
      @heywrandom8924 Рік тому

      ​@@jamesbriggsthank you (:.
      I didn't watch that specific video as I am not sure what the keywords in the title mean and I am not sure it's relevant to me. I just checked it out a bit and the video looks cool (:.

  • @Data_scientist_t3rmi
    @Data_scientist_t3rmi Рік тому

    do you have any videos about scalability ? i mean for 1000 pdfs it could be good thing but for 100000 documents, the time to pre-process is diffcult. thanks again for the video you were the most person that introduce me to Transformers

  • @michaeldausmann6066
    @michaeldausmann6066 9 місяців тому +2

    cool, ok. but... how does it work? what does it do? you just give it a query and it reranks for you.......wtf what is the magic sauce I want to understand the technique.

    • @nirbhaykumar4906
      @nirbhaykumar4906 6 місяців тому

      Yes some more detail into working of reranker would be useful.

  • @HazemAzim
    @HazemAzim Рік тому

    Great . Any other open source reranking transformer on Hugging Face ? other than cohere which is closed source ?

    • @haristan1960
      @haristan1960 Рік тому

      Sentence transformer has cross encoder models in hugging face you can try them but there quite old

    • @HazemAzim
      @HazemAzim Рік тому

      @@haristan1960 Yes true .. I found many cross encoders on SBERT and hugging face . Thanks

    • @jamesbriggs
      @jamesbriggs  Рік тому

      check out bpe-reranker huggingface.co/BAAI/bge-reranker-large/tree/main

  • @bastabey2652
    @bastabey2652 6 місяців тому

    the moment showing how LLM reads the scraped concatenated text is impressive
    ua-cam.com/video/Uh9bYiVrW_s/v-deo.html

  • @SahlEbrahim
    @SahlEbrahim 2 місяці тому

    is cohere free?

    • @jamesbriggs
      @jamesbriggs  2 місяці тому

      I think you get a number of credits free before needing to pay

  • @vanerk_
    @vanerk_ 10 місяців тому

    you have explained a high level idea of reranker whereas explanation of reranker achitecture was expected, dislike.

    • @jamesbriggs
      @jamesbriggs  10 місяців тому

      see here ua-cam.com/video/WS1uVMGhlWQ/v-deo.html