An Introduction to Streamlit

Data Science, Data Analytics, and Machine Learning are some of the emerging fields in the past few years. There has been a massive increase in the development of applications that employ the above techniques and Python is the go-to language for developing such applications. But, just writing the code for a machine learning model is […]

An Introduction to Streamlit Read More »

The tanh activation function

In deep learning, neural networks consist of neurons that work in correspondence with their weight, bias and respective activation functions. The weights and biases are adjusted based on the error in the output. This is called backpropagation. Activation functions make this process possible as they supply the gradients along with errors to update weight and

The tanh activation function Read More »

Bind in Tkinter: A Complete Guide

In this article let’s try to understand the concept of bind used in Tkinter. Before starting with this topic, we must remember that Python’s Tkinter package is used to design GUI-based interfaces. Tkinter has a variety of built-in functionalities and extensions that can be used to enhance the functionality and performance of the application. What

Bind in Tkinter: A Complete Guide Read More »

NumPy Arccos- A Complete Guide

Hello Readers! In this tutorial, we will understand the NumPy arccos function along with a lot of examples. We will also plot the curve of the arccos function. So, let’s get started. Also read: NumPy Arctan – A Complete Guide Arccos Function – Quick Overview arccos is the representation of the inverse of the cosine

NumPy Arccos- A Complete Guide Read More »

NumPy Cos – A Complete Guide

Welcome to the second tutorial of the series NumPy Trigonometric Function. In this tutorial, we will understand about NumPy Cos function. NumPy provides many Trigonometric functions and NumPy Cos is one of them. Just like Numpy Sine produces the output in the range [-1, 1], the output of the Cosine function is the same. We

NumPy Cos – A Complete Guide Read More »

Numpy Sin – A Complete Guide

This is the first tutorial for the series NumPy Trigonometric Functions. In this due course, we will be learning about Trigonometric Functions provided by the NumPy library with examples. You must have calculated the sine of a particular angle and gotten the result in the range [-1, 1]. Well, the sine operation can be performed

Numpy Sin – A Complete Guide Read More »