Dheeraj Chittari

Results 3 comments of Dheeraj Chittari

**To overcome error 1:** It is because google colab does not support QT GUI library to render the output. Check this [Reference](https://stackoverflow.com/questions/70834455/how-qt-platform-plugin-could-be-initialized-in-google-colab) Therefore, 1. comment out "cv2.imshow" at line 80...

What worked for me is deepspeed's [flops-profiler](https://www.deepspeed.ai/tutorials/flops-profiler/)

I modified the code and it worked for me: I added the **model_name = "gpt-4"**, parameter for at the end see code below: ``` llm_azure = AzureChatOpenAI( api_version="", azure_deployment="", azure_endpoint=os.getenv(""),...