Blogs


  • Google Colab Notebook Tutorial | How to import a dataset

    On this page Introduction How to setup Google Colab Enabling GPU and some basic functions Importing files or datasets into Google colab notebook Related reading Introduction In this article, we are going to learn about Google colaboratory notebooks in as much detail as possible. This tutorial is going to cover a variety of things related…

    Read more

  • Bucket Sort Algorithm & Time Complexity | Python Implementation

    On this page Introduction Prerequisites Bucket Sort Algorithm Introduction In this tutorial, we are going to learn about a sorting algorithm named Bucket Sort. Bucket sort, or bin sort, is a comparison sort algorithm that works by assigning the elements of an array or list to a number of buckets. The elements within each bucket…

    Read more

  • How to code a classification & regression model in Python

    In this article, we are going to first get an introduction to Supervised learning, followed by a little dive into the two most common types of supervised learning algorithms; namely, classification & regression. At the end we will have two coding examples, one for classification and one for regression. Both will use a different dataset…

    Read more