File size: 841 Bytes
cec5823
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0ed77e1
cec5823
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from pathlib import Path

NB_ID = "blind-deblurring-from-synthetic-data"  # This will be the name which appears on Kaggle.
GIT_USER = "balthazarneveu"  # Your git user name
GIT_REPO = "blind-deblurring-from-synthetic-data"  # Your current git repo
# Keep free unless you need to acess kaggle datasets. You'll need to modify the remote_training_template.ipynb.
KAGGLE_DATASET_LIST = [
    "balthazarneveu/deadleaves-div2k-512", # Deadleaves classic
    "balthazarneveu/deadleaves-primitives-div2k-512", # Deadleaves with extra primitives
    "balthazarneveu/motion-blur-kernels", # Motion blur kernels
    "joe1995/div2k-dataset",
]
WANDBSPACE = "deblur-from-deadleaves"
TRAIN_SCRIPT = "scripts/train.py"  # Location of the training script

ROOT_DIR = Path(__file__).parent
OUTPUT_FOLDER_NAME = "output"
INFERENCE_FOLDER_NAME = "__inference"