‪@LangChain‬

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

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

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

    This was awesome - clear, concise and relatable.
    Thanks

  • @GeorgeZoto
    @GeorgeZoto ปีที่แล้ว +1

    Excellent tutorial and to the point, thank you for this hands on session, looking forward to checking it out :)

  • @gvasvas
    @gvasvas ปีที่แล้ว

    Excellent tutorial, easy to understand.

    • @AssemblyAI
      @AssemblyAI  ปีที่แล้ว

      Glad it was helpful!

  • @kunalsoni7681
    @kunalsoni7681 ปีที่แล้ว +1

    enjoyable session :)

  • @JoeSmith-kn5wo
    @JoeSmith-kn5wo ปีที่แล้ว

    Great video! I'm doing some data analysis with pandas right now and this could come in handy.

  • @WilliamDye-willdye
    @WilliamDye-willdye ปีที่แล้ว +1

    Very nice walkthrough. Now my problem is to find a data set for my own demo project that has an plausible chance of producing even a small profit. Perhaps an analysis of popular children's books, fed into a coloring book generator. The book might not actually sell, but it seems reasonable to start thinking early about how to use AI to make stuff that people will want to buy.

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

    any chance you could demonstrate using a model running locally (e.g. LLama2) please?

  • @joaquinmenendez7234
    @joaquinmenendez7234 ปีที่แล้ว

    Do you have some recommendations about tuning up the prompt to get better outputs? Like passing dataframe schema, some explanation, etc

  • @DK-dp3kk
    @DK-dp3kk 11 หลายเดือนก่อน

    Great video thank you. I use the Falcon model to save money by the way. Can you summarize text that is within the pandas data frame? How?

  • @Delightforeyes
    @Delightforeyes ปีที่แล้ว

    Great video. My question is can we use it in Power Bi with questions embedded in the form of tubs, or as a list of questions with data sources on Azure?

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

    Good one, thank you!

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

      You're welcome!

  • @rasalive4062
    @rasalive4062 ปีที่แล้ว

    Thanks a lot it was great leanring,
    I just wanted to mention that chatgpt already knows this dataset so it's able to understand where to find the specific things. If you try something on custom data set it does not provide such in depth answers

    • @RonaldDraxer-rb4qm
      @RonaldDraxer-rb4qm 11 หลายเดือนก่อน

      Thats not how it works. It works by generating code and executing it behind the scene

  • @ozgurdugmeci6071
    @ozgurdugmeci6071 ปีที่แล้ว

    is it possible to add conversational memory to the pandas agent?

  • @walidmaly3
    @walidmaly3 ปีที่แล้ว

    Thnaks a lot.. I am getting this error OutputParserException: "Could not parse LLM output: `I need to use the `python_repl_ast` tool to execute the command.`" Can you please help?
    If I do this it works
    query="What is the average sepal_length?"
    query=query+ " using tool python_repl_ast"
    agent.run( query)

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

    The video is outdated. Is there a more up-to-date version available?

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

    how to get the action input formula as the output

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

    for those wondering, the agent supports openai only

  • @devpriyashivani1855
    @devpriyashivani1855 ปีที่แล้ว

    When the list of rows in response is very large, ... is returned in the response instead of the actual values. How can we get the actual values?

    • @texasfossilguy
      @texasfossilguy ปีที่แล้ว

      specifically what are you wanting? It is not good practice to read every row in a giant dataframe because it will use RAM. If you want specific rows ask for those.

    • @texasfossilguy
      @texasfossilguy ปีที่แล้ว

      import pandas as pd
      fruits_df = pd.read_csv('fruits.csv')
      with pd.option_context('display.max_rows', None,):
      print(fruits_df)
      option context is temporary change, so the next time code is executed in another cell, you will see ... again.
      For permanent option change use:
      import pandas as pd
      fruits_df = pd.read_csv('fruits.csv')
      pd.set_option('display.max_rows', None)
      print(fruits_df)

  • @nicky_rads
    @nicky_rads ปีที่แล้ว

    Nice video ! AI agents have a lot of potential, very cool to see.

  • @YuCai-v8k
    @YuCai-v8k ปีที่แล้ว

    Can it work for pyspark? Great

  • @MuhammadFaizanMumtaz3
    @MuhammadFaizanMumtaz3 ปีที่แล้ว

    I don't know you're name but I love you a lot.

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

    It doesn't work because it is already all deprecated

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

      Did you get any way around for this problem, I'm also getting import error and all.
      I referred through new documentation still didn't helped.