PRADEEP T

Results 48 comments of PRADEEP T

So how to analyze this report? ![Screenshot from 2024-02-29 10-30-11](https://github.com/whylabs/whylogs/assets/41164884/4b5fd3fe-34e5-460f-8f45-7f9cee5007ec) consider the second-row row : prompt.aggregate_reading_level(aggregate reading level of the input text as calculated by the textstat library) column :...

@FelipeAdachi Okay. So for getting the exact values for aggragate_reading_level,charector_count,automated_readability_index,sentence_count...etc, how to write the code? I am looking for the actual values, rather than the distributions like est,mean,median,..etc

@FelipeAdachi Thank you so much

According to the [github page for tensorflow fairness-indicators](https://github.com/tensorflow/fairness-indicators) : **Fairness Indicators enables easy computation of commonly-identified fairness metrics for binary and multiclass classifiers.** However, I'm unable to find any example...

@mrwyattii I tried the following code from the official documentation ``` import mii mii_configs = {"tensor_parallel": 1, "dtype": "fp16"} mii.deploy(task="text-classification",model="roberta-large-mnli",deployment_name="roberta_deployment",mii_config=mii_configs) ``` But it raises error ``` text-classification is not supported...

@mrwyattii here is the list ``` asyncio 3.4.3 grpcio 1.60.0 grpcio-tools 1.60.0 nest-asyncio 1.5.6 ```

Hi the ```pip uninstall -y asyncio nest-asyncio``` solved the ```import mii``` issue. But after mii importing, when I am loading my mistral finetuned model by ``` import mii finetuned_model_path =...

@fxmarty I am using an Ubuntu machine and after installing with this **pip install optimum[exporters-tf]** found two issues 1 - Error ```optimum-cli: command not found``` 2 - The model object...

@fxmarty I am using ubuntu machine with Python 3.8.16 . The ```pip install optimum[exporters-tf]``` not installing it showcasing the given error ![Screenshot from 2024-03-28 16-07-34](https://github.com/huggingface/optimum/assets/41164884/3f8777df-c35c-48b7-a42a-ea5a39fccfae) So installed via ```pip install...