We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Constantly showing the below error:
chart = plot(data)
**** name 'np' is not defined charts[0] IndexError: list index out of range Refer my code below: from lida import Manager, TextGenerationConfig , llm lida = Manager(text_gen = llm("openai", api_key="<my-api-key>")) # !! api key textgen_config = TextGenerationConfig(n=1, temperature=0.5, model="gpt-3.5-turbo", use_cache=True) summary = lida.summarize("https://raw.githubusercontent.com/uwdata/draco/master/data/cars.csv", summary_method="default", textgen_config=textgen_config) goals = lida.goals(summary, n=2, textgen_config=textgen_config) #for goal in goals: #print(goal) i = 0 library = "seaborn" textgen_config = TextGenerationConfig(n=1, temperature=0.2, use_cache=True) charts = lida.visualize(summary=summary, goal=goals[i], textgen_config=textgen_config, library=library) charts[0]
The text was updated successfully, but these errors were encountered:
yeah same issue... exists in one of the texxtgen configs..
Sorry, something went wrong.
Are u able to find a fix?
No branches or pull requests
Constantly showing the below error:
chart = plot(data)
The text was updated successfully, but these errors were encountered: