Course Project Regression Pytorch
New Section
!pip install jovian --upgrade --quiet
Weather in Szeged 2006-2016
This is a dataset for a larger project I have been working on. My idea is to analyze and compare real historical weather with weather folklore.
Content
The CSV file includes a hourly/daily summary for Szeged, Hungary area, between 2006 and 2016.
Data available in the hourly response:
- time
- summary
- precipType
- temperature
- apparentTemperature
- humidity
- windSpeed
- windBearing
- visibility
- loudCover
- pressure
import torch
import jovian
import torchvision
import torch.nn as nn
import pandas as pd
import matplotlib.pyplot as plt
import torch.nn.functional as F
from torchvision.datasets.utils import download_url
from torch.utils.data import DataLoader, TensorDataset, random_split
project_name='course-project-regression-pytorch' # will be used by jovian.commit
Dwi Gustin Nurdialit7 months ago