10 lines
380 B
Python
10 lines
380 B
Python
from pathlib import Path
|
|
|
|
ASSETS_PATH = Path(__file__).parent.parent / 'assets'
|
|
|
|
FONTS_ROOT = Path('~/data/jp_fonts').expanduser()
|
|
DATA_SYNTHETIC_ROOT = Path('~/data/manga/synthetic').expanduser()
|
|
BACKGROUND_DIR = Path('~/data/manga/Manga109s/background').expanduser()
|
|
MANGA109_ROOT = Path('~/data/manga/Manga109s').expanduser()
|
|
TRAIN_ROOT = Path('~/data/manga/out').expanduser()
|