-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathproject_config.py
More file actions
27 lines (23 loc) · 843 Bytes
/
project_config.py
File metadata and controls
27 lines (23 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
Created by Myung-Joon Kwon
mjkwon2021@gmail.com
July 7, 2020
"""
from pathlib import Path
project_root = Path(__file__).parent
dataset_root = Path(r"C:\Users\mmc\Downloads\Splicing")
dataset_paths = {
# Specify where are the roots of the datasets.
'FR': dataset_root / "FantasticReality_v1",
'IMD': dataset_root / "IMD2020",
'CASIA': dataset_root / "CASIA",
# 'NC16': dataset_root / "NC2016_Test",
# 'Columbia': dataset_root / "Columbia Uncompressed Image Splicing Detection",
# 'Carvalho': dataset_root / "tifs-database",
# 'tampCOCO': dataset_root / "tampCOCO",
# 'compRAISE': dataset_root / "compRAISE",
# 'COVERAGE': dataset_root / "COVERAGE",
# 'CoMoFoD': dataset_root / "CoMoFoD_small_v2",
# 'GRIP': dataset_root / "CMFDdb_grip",
'SAVE_PRED': project_root / "output_pred"
}