Write Better Python Functions (Using Type Dispatch)
Writing a function in python is easy but writing a good function is not that easy. Most python programmers are often not aware of how to...
- Python
- Functions
- Type Dispatch
Let us try to make the most from the data we have!
Recent Articles
Writing a function in python is easy but writing a good function is not that easy. Most python programmers are often not aware of how to...
Writing type hints for function arguments is a good start, but as the name suggests, it only hints at the data type of argument. When the...
Most Python programmers are guilty (me included) of always using List without even considering Tuple at all. Surely for some use cases...
We will use OpenCV to identify the number of stamps in a picture.
When training a Convolution Neural Network on a custom dataset, picking the right image is crucial. This will impact the training time &...
A lot of factors can affect the performance of a Deep Neural Network.Let's see how we can set up a PyTorch pipeline for Image augmentation...
In python, try and except blocks are often used by programmers for handling any exception or unhappy scenarios. Finally clause is very...
Build a digit emoji predictor in Jupyter notebook by passing data between JavaScript & Python. Typically, JavaScripts are used for data...
Let me explain with an example.