PRADEEP T

Results 48 comments of PRADEEP T

@OnTheThirdDay How can I compare the datasets( original dataset and the disparate impact removed dataset) through code?

``` di_remover = DisparateImpactRemover(repair_level=1.0) train_repd = di_remover.fit_transform(dataset_train) ``` How can I export the ```train_repd``` to csv? kindly share the code snippet for this.

@OnTheThirdDay Checked with ```convert_to_dataframe``` function of AIF360 like this ``` di = DisparateImpactRemover(repair_level=1.0) dir_dataset = di.fit_transform(dataset) dir_dataset_df= dir_dataset.convert_to_dataframe(sep=",") print(originalDataset.equals(dir_dataset_df[0])) ``` But it shows that original and transformed datasets are the...

Any updates on this?

@tiangolo any update on this? still i am getting the error ```openai.error.InvalidRequestError: Unrecognized request argument supplied: logprobs``` when trying to configure ```logprobs = 0``` in ```openai.ChatCompletion.create``` code i tried ```...

@romanlutz @hildeweerts @SeanMcCarren Any updates on this thread? Shall we use fairlearn directly for mitigating bias in multiclass classification problems?

@athyuttamre yes. So any solution to make the openai chatgpt API result output JSON? when I tried to give examples as @traosorus suggested, it shows an error like API input...

so can't we merge the same parameters in different models like mistral 7B and Openchat 7B?

Great thanks. So I have 2 fine-tuned models **1 - Finetuned model in mistral 7B instruct model 2 - Finetuned model in openchat 7B model** Hope using the mergekit I...