This repostory contains the notebooks used in the Hands-on Workshop on Python Libraries for Machine Learning
The notebook names are self descriptive and can be run directly by opening them and clicking on "Open in Colab"
You can find our slides here
This repo also contains the "weatherAUS.csv" dataset which we will use to learn how to handle Classification problems using Machine Learning.
[Dataset Source: https://www.kaggle.com/datasets/jsphyg/weather-dataset-rattle-package]
-
First import pandas:
import pandas as pd
-
Download the dataset from this repo using the command:
!wget https://raw.githubusercontent.com/nksrivastavaa/ML-workshop-dataset/main/weatherAUS.csv
-
Load the dataset into a pandas dataframe:
raw_df = pd.read_csv('weatherAUS.csv')
-
You can get info on the dataset by:
raw_df.info()