RAG Explained

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

ความคิดเห็น • 99

  • @HustlerCoder
    @HustlerCoder 18 ชั่วโมงที่ผ่านมา +1

    Correction
    1. Vector databases use mathematical representations like vectors, not arrays. Array-like similarity oversimplifies.
    2. Transparency reduces bias but cannot entirely eliminate it without robust training data.
    3. Embeddings are typically static; new embeddings are created for updated data.

  • @RyanRosario
    @RyanRosario หลายเดือนก่อน +7

    The most important step here is left to the end. You can only use RAG with a transparent or locally built LLM.

  • @amritbro
    @amritbro 6 หลายเดือนก่อน +21

    Very simple and clear explanation.. cheers to IBM

  • @paulaichniowski968
    @paulaichniowski968 6 หลายเดือนก่อน +6

    Shawn & Luv!!!! Awesome job!!!!

  • @ShivamKumar-kx6rb
    @ShivamKumar-kx6rb 7 วันที่ผ่านมา

    great quick session, thanks !!

  • @angelinagokhale9309
    @angelinagokhale9309 15 วันที่ผ่านมา

    Very Well explained! Thank you so much.

  • @zehaankhan1
    @zehaankhan1 หลายเดือนก่อน +1

    The guy on the left wanted to laugh out loud at that sketch 😂

  • @LinkingL-x4v
    @LinkingL-x4v 2 หลายเดือนก่อน

    Clean database, stable generator and clever retriever.

  • @myidanny
    @myidanny 3 หลายเดือนก่อน +6

    Thought Shawn was very flirty until I realised he didn't say "love" but "Luv"

  • @LorenzoMarkovian
    @LorenzoMarkovian 4 หลายเดือนก่อน +1

    Clear and simple, thank you guys and thank you IBM

  • @fanzhang8823
    @fanzhang8823 4 หลายเดือนก่อน

    1. Vector DB may or may not stored relevant information related to the question. 2. LLM may already have information or more accurate information to the question. So RAG may not always be helpful for GenAi applications

  • @emteiks
    @emteiks 6 หลายเดือนก่อน +23

    There is good point of halucinations of AI and the video unfortunately does not address it. The data governance is not addressing this issue we still can have a scenario where input is valid but output generated by AI is a garbage.

    • @vintastic_
      @vintastic_ 6 หลายเดือนก่อน

      What's the solution?

    • @frackinfamous6126
      @frackinfamous6126 6 หลายเดือนก่อน +4

      @@vintastic_you have to make sure the relevant data is going to the model. Good info into the data base is only half the battle. Semantic chunking. Size of chunks..types of search. Type of vector database used. For example PG Vector is a Postgres plugin and is not near as good at retrieval (usually) as something like pinecone

    • @frackinfamous6126
      @frackinfamous6126 6 หลายเดือนก่อน +2

      Then the prompt used can also tremendously affect the model. You have to put it in the right context and use industry specific terms when prompting. Even a genius needs context or a bit of time to think. No matter who good the model, you have to know a bit about the specific industry to obtain great results. It’s like explains a noise to you mechanic or telling them you have a miss-fire on cylinder 1.

    • @miraculixxs
      @miraculixxs 5 หลายเดือนก่อน +1

      ​@@vintastic_ human expert review for every response

  • @research2you-su9om
    @research2you-su9om 6 หลายเดือนก่อน

    Thanks for the straight forward description of RAG.

  • @complexity5545
    @complexity5545 13 วันที่ผ่านมา

    I suggest prioritizing a terminal rather than a drawing board.

  • @DeanJohn7
    @DeanJohn7 13 วันที่ผ่านมา

    Bias within LLM's is a topic that needs more like shed on.

  • @bayesian7404
    @bayesian7404 6 หลายเดือนก่อน

    Good job. I still need to learn more about data accuracy in a LLM.

  • @vvishnuk
    @vvishnuk 6 หลายเดือนก่อน +3

    Neat and detail explanation.

  • @aaryaxz
    @aaryaxz 6 หลายเดือนก่อน +11

    Hey! If I ask a RAG-based language model, "Tell me the features of the iPhone 17," what will it tell me? Will it say it doesn't know or will it hallucinate? I understand that once the iPhone 17 is released, the database will be updated to provide the correct information. But what happens if I ask about it before its release?

    • @EduardoSantAnna
      @EduardoSantAnna 5 หลายเดือนก่อน +10

      I can see two scenarios here: if it is indeed RAG-based, then you have provided info about the yet-to-be-released iPhone 17. So the LLM will respond based on that.
      If you don't have it in your additional documents/vector DBs, then I'd recommend you to have always added something along the lines of "only answer with facts you have access to" to your system prompt and to set Temperature to a low number. (Temperature is a parameters in LLMs that defines how "creative" the model can be)
      Great question and it highlights the importance of having experts in GenAI guiding enterprises on how to implement this in a way that suits their use cases.

  • @maxcontini348
    @maxcontini348 3 หลายเดือนก่อน

    Nice explanation. Well done boys 😁

  • @Thomas___018s
    @Thomas___018s 4 หลายเดือนก่อน

    Poetic journey: the essence of refund details and expected actions

  • @PretendCoding
    @PretendCoding 19 ชั่วโมงที่ผ่านมา

    You'd think with this being IBM the mic would be better

  • @Ash-bc8vw
    @Ash-bc8vw 2 หลายเดือนก่อน +1

    Exactly love.

  • @CumaliTurkmenoglu-zn7hp
    @CumaliTurkmenoglu-zn7hp 5 หลายเดือนก่อน

    Great explanation. Thank you

  • @datoalavista581
    @datoalavista581 6 หลายเดือนก่อน +1

    Thank for sharing !!

  • @akshitgoel1183
    @akshitgoel1183 4 หลายเดือนก่อน +2

    Hi I have few Questions , Please find time to answer
    0. Are we filtering the Data in the Vector DB ? (If Yes? then )
    1. How are we filtering the relevant data from our vector DB to augment to our prompt for the LLM ?
    1. 1 who is doing this process , another LLM, our own code , or some-different tool?
    1.2 Are we feeding the complete data as whole to the LLM?
    1.2 if we are filtering the vector data using Rule Based Mechanism then what will be the use case of LLM , how is the power of LLM being drawn if we are the one who is making the decision what to feed as a relevant data to the LLM?

    • @satish1012
      @satish1012 3 หลายเดือนก่อน +4

      Hi This is what my understanding
      Storing Data as Embeddings:
      Correctness: Storing data (documents, images, etc.) as embeddings in a Vector DB is a valid approach. Embeddings represent the data in a high-dimensional vector space, capturing its semantic meaning.
      Consideration: Ensure that the embedding model you use is appropriate for your data type. For images, you might use a different model (e.g., CLIP) compared to text embeddings.
      Searching with Embeddings:
      Correctness: Converting the search query into embeddings and then comparing these embeddings with those stored in your Vector DB is correct. This allows for semantic search, which is more effective than keyword-based search.
      Consideration: Ensure that the conversion process and similarity calculations (e.g., cosine similarity) are implemented correctly. The returned plain text should be accurately relevant to the search query.
      Summarization by LLM:
      Correctness: Sending the retrieved plain text content to an LLM for summarization is appropriate. LLMs are designed to generate summaries and provide concise explanations based on the input text.
      Consideration: Ensure that the LLM is correctly configured for summarization tasks. Provide clear instructions or prompts to achieve the desired summarization quality.
      Returning Summarized Text to User:
      Correctness: Receiving the summarized text from the LLM and returning it to the user is the final step in the process. This is standard practice for providing user-friendly summaries.
      Consideration: Validate that the summarized content meets user expectations and provides accurate, meaningful information.
      1. We Store all out relevant data in Vector DB ..like documents , images etc as part of Embeddings
      2. When User Searches, it will not hit LLB directly, it will convert our search into Embeddings and return the resutlt with plain text
      3. Then we send the same to text for summarization to LLM
      4. Then LLM returns the summarized text back to user

  • @mzimmerman1988
    @mzimmerman1988 6 หลายเดือนก่อน +2

    nice work.

  • @Roy-h2q
    @Roy-h2q 6 หลายเดือนก่อน +1

    Interesting , thanks both

  • @AgentBangla
    @AgentBangla 6 หลายเดือนก่อน +1

    Excellent video, love it

  • @commentatorxyz5514
    @commentatorxyz5514 6 วันที่ผ่านมา

    The unhappiness in their eyes and frowns tell the pain of working for Artificial Intelligence jobs

  • @ricko13
    @ricko13 3 หลายเดือนก่อน

    good explanation

  • @THEaiGAI
    @THEaiGAI 6 หลายเดือนก่อน +1

    Awesome video

  • @DiegoSarasua-jn2wh
    @DiegoSarasua-jn2wh 6 หลายเดือนก่อน

    Thanks guys, very clear!

  • @paoloalberti8792
    @paoloalberti8792 หลายเดือนก่อน

    IMO. Data Gov Management seems to be the same as correct Database data input workflow. Prompt is a another way to query the database. LLM avoid use of query language to interrogate the DB. In this way a common people can query the DB. Appears to be a good idea to fine tuning a large LLM. But is not a fine tuned train is more similar to data embedding. In RAG how the vector database interact with LLM ? The vector database grows the LLM's latent space ? Is there a possibility that the LLM parameters can overlaps vector parameters making a mix of knowledge?

  • @nachoeigu
    @nachoeigu 6 หลายเดือนก่อน +1

    Cool explanation

  • @yojackleon
    @yojackleon 14 วันที่ผ่านมา

    Meh, they leave the biggest question unanswered, how are enterprises expected to govern the data that was used to train the LLM ?

  • @stephaniakossman2923
    @stephaniakossman2923 3 หลายเดือนก่อน

    Very clear explanation, thanks! How do you manage to avoid using "blackbox" models?

  • @brianvandermey4223
    @brianvandermey4223 19 วันที่ผ่านมา

    Great backwards writing skills!

  • @ammularajeshsagar7953
    @ammularajeshsagar7953 6 หลายเดือนก่อน +1

    Informative

  • @hathanh4650
    @hathanh4650 5 หลายเดือนก่อน

    Thank you for your sharing! Very helpful and easy to follow. Just one question, is there anyway we can test or reinforcement train the model to make sure the outputs are appropriate?

  • @PaulMoreira
    @PaulMoreira 2 หลายเดือนก่อน

    This was an excellent explanation! Thank you.

  • @5uryaprakashPi
    @5uryaprakashPi 5 หลายเดือนก่อน

    So with a rag approach, can I say that we can update the original vector db with our own processed data?

  • @gatsby66
    @gatsby66 6 หลายเดือนก่อน +7

    Nobody's ever been fired for buying RAGs from IBM.

    • @miraculixxs
      @miraculixxs 5 หลายเดือนก่อน +1

      ... yet

    • @dak2009
      @dak2009 2 หลายเดือนก่อน +1

      Love the 1980s meme.

  • @HazelChikara
    @HazelChikara หลายเดือนก่อน

    My left arm started tingling. Quite hard to concentrate now. 😅

  • @Laura__sa8q
    @Laura__sa8q 4 หลายเดือนก่อน

    The demanding world of refund specifics and anticipated actions

  • @dheerajkumar-uk6ec
    @dheerajkumar-uk6ec 5 หลายเดือนก่อน

    exactly love

  • @hassanabida
    @hassanabida 6 หลายเดือนก่อน +1

    Gotcha.

  • @George-j3George_372u
    @George-j3George_372u 4 หลายเดือนก่อน

    Ironically, because transfers between banks and cards always go so smoothly, don't they? But seriously, it's all good.

  • @Patricia___361n
    @Patricia___361n 4 หลายเดือนก่อน

    Behind the scenes: Binance CEO shares insights into future developments in an exclusive interview

  • @jonniuss
    @jonniuss 6 หลายเดือนก่อน

    ok, gotcha 👌

  • @yinlan2672
    @yinlan2672 4 หลายเดือนก่อน

    How to do this video? screen as the board.

  • @ColmFearon-dc8dr
    @ColmFearon-dc8dr 5 หลายเดือนก่อน +1

    Do these guys write on the whiteboard backwards or how does that work?

    • @JShaker
      @JShaker 4 หลายเดือนก่อน +4

      Yes they learned to write backwards for this video because it's cheaper to do that than to run the algorithm to flip a video horizontally

    • @mackkaputo8989
      @mackkaputo8989 4 หลายเดือนก่อน

      @@JShaker 😂😂😂

  • @SocialSketch
    @SocialSketch หลายเดือนก่อน

    Is there a pane of glass in front of them, or is this some other technology?

    • @thedesignbro
      @thedesignbro หลายเดือนก่อน +1

      yes it's a glass

  • @EasyCodingStudio
    @EasyCodingStudio 14 วันที่ผ่านมา

    good

  • @akhil7110
    @akhil7110 6 หลายเดือนก่อน +3

    Does not address how do you validate the Q1 results returned are accurate. You should have built in a process parallel to querying the LLM of actually querying the results and training the LLM to address any discrepancies, if that is possible or correct them.

  • @bangyor5949
    @bangyor5949 5 หลายเดือนก่อน

    Do LLMs store our sensitive data when using RAG?

    • @satish1012
      @satish1012 3 หลายเดือนก่อน

      No ,
      Vector DB stores all the sensitive and confidential data
      Once obtained send that data to LLM to get it summarized because Vector DB would have given only the connecting data for the string

  • @siddid7620
    @siddid7620 4 หลายเดือนก่อน

    7:10 sounds like support for open source.

  • @topcommenter
    @topcommenter 5 หลายเดือนก่อน

    🤔I think Luv saw the connection the entire time

  • @BachBaldwin
    @BachBaldwin 2 หลายเดือนก่อน

    8615 Balistreri Forge

  • @mictow
    @mictow 3 หลายเดือนก่อน

    Did you need to learn to write backwards for this videos?? or is there a product that help you with this nice board?

    • @nguyentran7068
      @nguyentran7068 3 หลายเดือนก่อน +1

      You record the video then mirror the image. They simple write on the clear board

    • @CraigMatadeen
      @CraigMatadeen 2 หลายเดือนก่อน

      th-cam.com/video/Uoz_osFtw68/w-d-xo.html

  • @BlueBearOne
    @BlueBearOne 6 หลายเดือนก่อน +5

    And then a wide spread global epidemic crisis is brought to light wherein our gold standard "books" (peer reviewed journals) are rife with bad and corrupt data due to mismatched incentivization and misalignment of directives; and we then realize...how much good data through science do we really have? Shame we polluted the books we are supposed to be able to trust now that we have this magnificent technology here. 😭

    • @godlymajins
      @godlymajins 6 หลายเดือนก่อน

      Dude, keep on topic. This isn’t the place for your grievances

    • @gcg8187
      @gcg8187 20 วันที่ผ่านมา

      i know right? it's too bad we not have unbiased data to make the most of this technology :(

  • @MelissaLee-k8c
    @MelissaLee-k8c 2 หลายเดือนก่อน

    Alverta Field

  • @sk3ffingtonai
    @sk3ffingtonai 6 หลายเดือนก่อน +1

    👏👏

  • @RosaSam-n3k
    @RosaSam-n3k หลายเดือนก่อน

    1411 Carson River

  • @VioletaEasterwood
    @VioletaEasterwood หลายเดือนก่อน

    946 Cremin Ranch

  • @markmotarker
    @markmotarker 5 หลายเดือนก่อน +3

    lol. must be annoying to talk to "Luv". "Hi, Luv", "Exactly, Luv"

  • @TenishaBentrem-f8t
    @TenishaBentrem-f8t 2 หลายเดือนก่อน

    Etha Road

  • @KennyGennaria-d1n
    @KennyGennaria-d1n 2 หลายเดือนก่อน

    Sipes Forks

  • @DonnaGonzalez-r9e
    @DonnaGonzalez-r9e หลายเดือนก่อน

    Dibbert Throughway

  • @EllenJared-x3y
    @EllenJared-x3y หลายเดือนก่อน

    Dayna Course

  • @WilliamsBarco-z3x
    @WilliamsBarco-z3x 2 หลายเดือนก่อน

    Pacocha Estates

  • @vrohan07
    @vrohan07 6 หลายเดือนก่อน

    kabhi haans bhi liya karo..
    (Smile a bit bros)

  • @maliciousinferno
    @maliciousinferno 6 หลายเดือนก่อน +5

    How in the world is this dude writing inverted for us too read straight lol

    • @inriinriinriinriinri
      @inriinriinriinriinri 6 หลายเดือนก่อน +4

      they mirror the video) you can notice that most of the people writing on a glass board are left handed(in reality 90% of planet’s population is right handed), that’s also because they mirrored the video

    • @ObscuredByCIouds
      @ObscuredByCIouds 6 หลายเดือนก่อน

      It's a skill only left-handed people have

  • @LutherHalifax-e4m
    @LutherHalifax-e4m 2 หลายเดือนก่อน

    Malika Spur

  • @HowardBlair-m5d
    @HowardBlair-m5d 2 หลายเดือนก่อน

    Tom Harbor

  • @SidStrong-l9t
    @SidStrong-l9t 5 หลายเดือนก่อน +2

    Terrible Analogy! When a journalist is ants to do research, he goes to a library and asks the librarian??
    As opposed to doing a google search ?
    This scenario is from last century before Luv was born ?

  • @vishwanathchintala2000
    @vishwanathchintala2000 หลายเดือนก่อน

    Single take artists

  • @Lemonsstored
    @Lemonsstored 6 หลายเดือนก่อน +4

    Boring

  • @FirmsJoktsate
    @FirmsJoktsate 2 หลายเดือนก่อน

    77091 Schowalter Passage