Skip to content
Snippets Groups Projects
Commit 8156b244 authored by v.gramlich1's avatar v.gramlich1
Browse files

Fixed Error in load_stations

parent 3814ac6a
No related branches found
No related tags found
1 merge request!302Draft: Resolve "Class-based Oversampling technique"
Pipeline #71620 failed
......@@ -2,7 +2,7 @@ __author__ = "Lukas Leufen"
__date__ = '2020-06-29'
import argparse
from mlair.workflows import DefaultWorkflow
from mlair.workflows import DefaultWorkflowHPC
from mlair.helpers import remove_items
from mlair.configuration.defaults import DEFAULT_PLOT_LIST
from mlair.model_modules.model_class import IntelliO3_ts_architecture
......@@ -24,7 +24,7 @@ def load_stations(external_station_list=None):
def main(parser_args):
plots = remove_items(DEFAULT_PLOT_LIST, "PlotConditionalQuantiles")
workflow = DefaultWorkflow(stations=load_stations('supplement/German_background_stations.json'),
workflow = DefaultWorkflowHPC(stations=load_stations('supplement/German_background_stations.json'),
#stations=["DEBW013", "DEBW087", "DEBW107", "DEBW076"],
epochs=150,
train_model=True, create_new_model=True, network="UBA",
......
......@@ -2,14 +2,14 @@ __author__ = "Lukas Leufen"
__date__ = '2020-06-29'
import argparse
from mlair.workflows import DefaultWorkflow
from mlair.workflows import DefaultWorkflowHPC
from mlair.helpers import remove_items
from mlair.configuration.defaults import DEFAULT_PLOT_LIST
from mlair.model_modules.model_class import IntelliO3_ts_architecture
import os
def load_stations(external_station_list = None):
def load_stations(external_station_list=None):
import json
if external_station_list is None:
external_station_list = 'supplement/station_list_north_german_plain_rural.json'
......@@ -24,7 +24,7 @@ def load_stations(external_station_list = None):
def main(parser_args):
plots = remove_items(DEFAULT_PLOT_LIST, "PlotConditionalQuantiles")
workflow = DefaultWorkflow(stations=load_stations('supplement/German_background_stations.json'),
workflow = DefaultWorkflowHPC(stations=load_stations('supplement/German_background_stations.json'),
#stations=["DEBW013", "DEBW087", "DEBW107", "DEBW076"],
epochs=150,
train_model=True, create_new_model=True, network="UBA",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment