Sameer Mahajan

Results 5 issues of Sameer Mahajan

While trying to "Train" using this code I am getting an error: DevTools failed to load source map: Could not load content for https://cdn.jsdelivr.net/npm/@tensorflow/tf.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE...

type:bug

make_future_dataframe doesn't support regressors currently. So code like: ``` m = Prophet() m.add_regressor('var') m.fit(df) forecasts = m.predict(m.make_future_dataframe(periods=7)) ``` gives an error like: `ValueError: Regressor 'var' missing from dataframe when attempting...

enhancement
good first issue

listen API currently does not provide a way to specify sample rate. It seems that it uses some non standard sample rate / wave.getframerate() of 44100 which is making it...

I need DBAgent like functionality in crewai. I notice that https://github.com/joaomdmoura/crewAI/pull/246 was raised 3 months ago but is not yet merged to the mainline. What are my options until then?...

following code ``` from langchain.chat_models import init_chat_model from langchain_core.tools import tool, InjectedToolArg from tavily import TavilyClient from typing_extensions import Annotated, Literal model = init_chat_model(model="kitsonk/watt-tool-8B", model_provider="ollama", api_key="ollama") @tool(parse_docstring=True) def tavily_search( query:...