Mattan Yeroushalmi
Mattan Yeroushalmi
Solves issue https://github.com/clauderic/react-sortable-hoc/issues/533 according to https://github.com/clauderic/react-sortable-hoc/issues/533#issuecomment-772173728
I think the docs and error handling would benefit from explicitly writing that the `base_uri` parameter must be set to the directory of the file that has references in it....
https://github.com/confident-ai/deepeval/blob/e49714ddd0fe523d27ef4c8b2477eeaeb7128ef2/deepeval/metrics/g_eval/g_eval.py#L315 It seems that the "except" clause here can cause unexpected results since the evaluation of the probabilities can fail, but the code will still return a score. In my...
in `_run_single_test` we have the code ``` model, tokenizer = load_model( self.model_path, num_gpus=self.num_gpus, device=self.device, debug=self.debug, ) ``` This happens in a loop in generation_results: ``` for attempt in range(max_retries): try:...