Learn practical skills, build real-world projects, and advance your career
# Start off with some imports
import torch
import torchvision
from torchvision.datasets.utils import download_url
import pandas as pd
import librosa
import numpy as np
from torch.utils.data import TensorDataset, DataLoader, random_split
import librosa.display
import matplotlib.pyplot as plt
import tarfile
import torch.nn as nn
import torch.nn.functional as F

Run the following code cell to download the dataset using download_url

download_url("https://goo.gl/8hY5ER","./data/")

Run the following code cell to install the jovian library. This helps in committing the notebook to jovian, maintaining different versions and logging metrics.

!pip install jovian --quiet
import jovian