import os
import resource
from ..core.dataset.dataset import Dataset, TimeSeriesDataset, Freq
from typing import Any, Callable, List, Optional
import torch
from torchvision.datasets.utils import download_url, download_and_extract_archive, check_integrity
import pandas as pd
import numpy as np
import torch.utils.data
[docs]class ETTm2(TimeSeriesDataset):
"""
Electricity Transformer Temperature minutely~(15 minutes level). This dataset contains 2-year data from two separate counties in China. Each data point consists of the target value "oil temperature" and 6 power load features.
This dataset is collected by Informer and is available at https://github.com/zhouhaoyi/ETDataset.
Attributes:
name (str): Name of the dataset.
freq (str): Frequency of the data points.
num_features (int): Number of features in the dataset.
length (int): Length of the dataset.
Methods:
download():
Downloads and extracts the dataset.
_load():
Loads the dataset into a NumPy array.
_process():
Processes the dataset using the parent class's process method.
"""
name:str= 'ETTm2'
num_features: int = 7
freq : Freq = 't'
length : int = 69680
[docs] def download(self):
download_url(
"https://raw.githubusercontent.com/zhouhaoyi/ETDataset/main/ETT-small/ETTm2.csv",
self.dir,
filename='ETTm2.csv',
md5="7687e47825335860bf58bccb31be0c56"
)
[docs] def _load(self) -> np.ndarray:
self.file_path = os.path.join(self.dir, 'ETTm2.csv')
self.df = pd.read_csv(self.file_path,parse_dates=[0])
self.dates = pd.DataFrame({'date':self.df.date})
self.data = self.df.iloc[:, 1:].to_numpy()
return self.data