1234567891011121314151617181920212223242526 |
- """
- @author: yq
- @time: 2022/10/24
- @desc:
- """
- import os
- class BaseConfig:
-
- image_path = os.path.join(".", "cache", "image")
- os.makedirs(image_path, exist_ok=True)
-
- train_path = os.path.join(".", "cache", "train")
- os.makedirs(train_path, exist_ok=True)
-
- run_env = "jupyter"
-
- java_home = "/usr/local/jdk1.8"
-
- merge_table_column = True
|