Sinnaeve
Sinnaeve
weights_summary argument seems depreciated https://pytorch-lightning.readthedocs.io/en/stable/common/trainer.html#weights-summary
I had the same issue (init() got an unexpected keyword argument 'weights_summary' error), I had to downgrade pytorch lightning from 1.7 to 1.6.4 (then it worked)
I wrote some very inefficient code to do it outside of class method for my own project ```my_idx = 1 for target_num, target in enumerate(list_of_traget_names): print(target) quartile_nbr = raw_predictions_val['prediction'][target_num][my_idx].shape[-1] enc_l...
> I would analyze each model separately. I would create an explainer for model 1, check feature importance, paint some scatter plots, get a feel for the explanations. And then,...
> Hello Everyone, > > handle_parsing_errors doesn't seem to work in latest versions and I am getting following warning > > ``` > /home/ec2-user/anaconda3/envs/python3/lib/python3.10/site-packages/langchain_community/agent_toolkits/sql/base.py:138: UserWarning: Received additional kwargs {'handle_parsing_errors': True}...
Will this be fixed ? There is no new activity so I'm not sure if an alternative exist for configurable_fields with agent. Currently using langchain.__version__='0.2.1', I basically want to configure...
I think I have the same issue. In the trace you provided, we can see the LLM called the tool named 'standardize_address'. But to do this, the LLM should have...