Shivam MauryaFeb 17, 20231 min readFrom Data Cleaning to Random Forests: Building a Titanic Survival PredictorFor every code and step explanation click here import pandas as pd df=pd.read_csv("train.csv") df.info() df.describe() df.columns ...
Shivam MauryaSep 30, 20225 min readHOW SUCCESSFUL A CAREER OF MACHINE LEARNING WOULD BE ?"Data are becoming the new raw material of business.” Machine learning (ML) is a field of inquiry devoted to understanding and building...
Shivam MauryaAug 30, 20221 min readPython program to find the largest element in an array using recursion
Shivam MauryaAug 22, 20222 min readCreate your own audiobook using pythonIn Python, there is a module 'PYTTSX3' that is used to convert your text into a speech. This library also works in offline mode and is...