-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparam_global.py
More file actions
35 lines (27 loc) · 893 Bytes
/
param_global.py
File metadata and controls
35 lines (27 loc) · 893 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
# Parameters File
import os
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import warnings
warnings.filterwarnings('ignore')
import cv2
import pickle
import keras
import random
image_size = 32
astrohack_path=os.path.dirname(os.path.realpath(__file__))
data_path=os.path.join(astrohack_path,"Data")
# legacy
sample_data_path=os.path.join(data_path,"SAMPLE")
# original input path
full_data_path="/scratch/leuven/sys/ASTROHACK_DATA/Train"
test_data_path="/scratch/leuven/sys/ASTROHACK_DATA/Test"
code_path=os.path.join(astrohack_path,"Code")
neural_network_path=os.path.join(code_path,"Neural_Network")
pre_processing_path=os.path.join(code_path,"Pre_processing")
predictions_path=os.path.join(code_path,"Predicitons")
# model results
output_path="/data/leuven/319/vsc31950/output_data"
# transformed dataset
temp_path="/scratch/leuven/319/vsc31950/output_files"