Skip to content
Snippets Groups Projects
Commit f9e48dc7 authored by lukas leufen's avatar lukas leufen
Browse files

removed unused modules.py file

parent 965975c2
No related branches found
No related tags found
2 merge requests!37include new development,!30Lukas issue037 feat run without training
Pipeline #29035 passed
import logging
import argparse
from src.run_modules.run_environment import RunEnvironment
from src.run_modules.experiment_setup import ExperimentSetup
from src.run_modules.pre_processing import PreProcessing
class Training(RunEnvironment):
def __init__(self):
super().__init__()
class PostProcessing(RunEnvironment):
def __init__(self):
super().__init__()
if __name__ == "__main__":
formatter = '%(asctime)s - %(levelname)s: %(message)s [%(filename)s:%(funcName)s:%(lineno)s]'
logging.basicConfig(format=formatter, level=logging.DEBUG)
parser = argparse.ArgumentParser()
parser.add_argument('--experiment_date', metavar='--exp_date', type=str, nargs=1, default=None,
help="set experiment date as string")
parser_args = parser.parse_args()
with RunEnvironment():
ExperimentSetup(parser_args, stations=['DEBW107', 'DEBY081', 'DEBW013', 'DEBW076', 'DEBW087', 'DEBW001'],
station_type='background')
PreProcessing()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment