My Brain Cells

Easiest (and best) learning materials for anyone with a curiosity for machine learning and artificial intelligence, Deep learning, Programming, and other fun life hacks.

Month: May 2021

NumPy Cheat Sheet

  install the NumPy              >> pip install numpy *if you use online notebooks like colab then numpy is built it in. Import NumPy              >>import numpy as np Importing/exporting np.loadtxt(‘file.txt’) | From a text file…

PyCaret

  PyCaret PyCaret is an open-source, low-code machine learning library in Python that aims to reduce the cycle time from hypothesis to insights. It is well suited for seasoned data scientists who want to increase the productivity of…

  Step1: – Import libraries import osimport seleniumfrom selenium import webdriverimport timefrom PIL import Imageimport ioimport requestsfrom webdriver_manager.chrome import ChromeDriverManagerfrom selenium.common.exceptions import ElementClickInterceptedException   Step 2: – Install Driver #Install Driverdriver = webdriver.Chrome(ChromeDriverManager().install())   Step 3:…

Back to top