CA_NSBS / src /datasets /somos.py
1NEYRON1's picture
Create datasets/somos.py
a4ce0c2
raw
history blame contribute delete
324 Bytes
from torch.utils.data import Dataset
class SOMOSDataset(Dataset):
def __init__(self, data_path: str, metric: str) -> None:
"""
metric is one of ['sbs', 'mos']
"""
self.metric = metric
class StdSOMOSDataset(SOMOSDataset):
"""
Standartized by user SOMOS dataset
"""
pass