Spaces:
Running
Running
File size: 1,013 Bytes
a80d6bb c74a070 a80d6bb c74a070 a80d6bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# Copyright 2019-present NAVER Corp.
# CC BY-NC-SA 3.0
# Available only for non-commercial use
from .pair_dataset import CatPairDataset, SyntheticPairDataset, TransformedPairs
from .imgfolder import ImgFolder
from .web_images import RandomWebImages
from .aachen import *
# try to instanciate datasets
import sys
try:
web_images = RandomWebImages(0, 52)
except AssertionError as e:
print(f"Dataset web_images not available, reason: {e}", file=sys.stderr)
try:
aachen_db_images = AachenImages_DB()
except AssertionError as e:
print(f"Dataset aachen_db_images not available, reason: {e}", file=sys.stderr)
try:
aachen_style_transfer_pairs = AachenPairs_StyleTransferDayNight()
except AssertionError as e:
print(
f"Dataset aachen_style_transfer_pairs not available, reason: {e}",
file=sys.stderr,
)
try:
aachen_flow_pairs = AachenPairs_OpticalFlow()
except AssertionError as e:
print(f"Dataset aachen_flow_pairs not available, reason: {e}", file=sys.stderr)
|