Learn practical skills, build real-world projects, and advance your career
from google.colab import drive
drive.mount('/content/drive')
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).

DATA COLLECTION

#cell 1
#Must install 
#!conda install numpy pytorch torchvision cpuonly -c pytorch -y
#!pip install matplotlib --upgrade --quiet
#!pip install seaborn --upgrade --quiet
#!pip install pandas
#!pip install sklearn
#!pip install gdown
#install jovian when you are related to this course
!pip install jovian --upgrade --quiet
my_project = 'Akash_Project_alcoholic_sales_Prediction_time'

import jovian
# Import all libraries
import torch
import torch.nn as nn

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline

# This relates to plotting datetime values with matplotlib:
from pandas.plotting import register_matplotlib_converters
register_matplotlib_converters()