Skip to content

Deep Learning

calculate the standard deviation or variance of the tensor in Tensorflow

Easy way to calculate the standard deviation or variance of the tensor in TensorFlow?

Let’s see how you can calculate the standard deviation or variance of the tensor. As you know while building a neural network, you have to perform aggregation on the tensor often. Finding maximum, minimum, and sum is done via the same piece of code with very little change in it. But finding variance or standard deviation will require some tweaks.… Continue readingEasy way to calculate the standard deviation or variance of the tensor in TensorFlow?

Chat GPT-3 web app with streamlit

How to Create A Chat GPT-3 Web app with Streamlit in Python

OpenAI’s ChatGPT-3(Generative Pre-trained Transformer) is one of the most powerful AI chatbots right now. You can ask anything and it gives the precise answers of it. OpenAI also provides API to implement it in the programming. In this article, we will see how to create a Chat GPT-3 web app with Streamlit in python using API. After creating this, your… Continue readingHow to Create A Chat GPT-3 Web app with Streamlit in Python