-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
42 lines (31 loc) · 855 Bytes
/
config.py
File metadata and controls
42 lines (31 loc) · 855 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import pandas as pd
import os
# -------------------------------
# System Parameters
# -------------------------------
source_folder = ".\\rawdata"
temp_folder = ".\\temp"
target_folder = ".\\result\\result"
test_dir = ".\\test\\"
merge_dir = ".\\merge\\"
# -------------------------------
# Data Process Parameters
# -------------------------------
min_wavelength = 400
max_wavelength = 1100
step_wavelength = 1
delete_temp = False
# data_type = "IA" # Idea Optics
data_type = "OV" # Ocean View
# -------------------------------
# Machine Learning Parameters
# -------------------------------
epochs = 2000
# -------------------------------
# Test Parameters
# -------------------------------
flatten = False
add_noise = False
offset = 0
if __name__ == "__main__":
print("This is a configuration file and it stores some global variables.")