def create_dataset(dataset_opt):
mode = "LQ" # dataset_opt["mode"]
if mode == "LQ": # Predictor
from data.LQ_dataset import LQDataset as D
dataset = D(dataset_opt)
elif mode == "LQGT": # SFTMD
from data.LQGT_dataset import LQGTDataset as D
dataset = D(dataset_opt)
elif mode == "GT": # Corrector
from data.GT_dataset import GTDataset as D
dataset = D(dataset_opt)
Hello,
Thank you for sharing your code. I'm interested in testing it using LQ (Low Quality) images, but I noticed that the repository only includes GT_dataset.py and LQGT_dataset.py. Could you please upload the LQ_dataset.py file as well? It would be very helpful for my tests.
Appreciate your help.
def create_dataset(dataset_opt):
mode = "LQ" # dataset_opt["mode"]
if mode == "LQ": # Predictor
from data.LQ_dataset import LQDataset as D
dataset = D(dataset_opt)
elif mode == "LQGT": # SFTMD
from data.LQGT_dataset import LQGTDataset as D
dataset = D(dataset_opt)
elif mode == "GT": # Corrector
from data.GT_dataset import GTDataset as D
dataset = D(dataset_opt)
Hello,
Thank you for sharing your code. I'm interested in testing it using LQ (Low Quality) images, but I noticed that the repository only includes GT_dataset.py and LQGT_dataset.py. Could you please upload the LQ_dataset.py file as well? It would be very helpful for my tests.
Appreciate your help.