Skip to content
Snippets Groups Projects
Commit 944b5177 authored by Noordijk, Ben's avatar Noordijk, Ben
Browse files

Some commented lines to be used for debugging

parent 5cf38f1f
No related branches found
No related tags found
1 merge request!5compare_accuracy.py now saves confusion matrices and can be called on the...
......@@ -13,6 +13,7 @@ sys.path.append(f'{Path(__file__).resolve()}/..')
from helper_functions import parse_output_path
from pathlib import Path
from hyperopt.mongoexp import MongoTrials
from hyperopt import Trials
from contextlib import suppress
import tensorflow as tf
......@@ -125,7 +126,8 @@ def main(args):
# Minimize objective
# TODO: exp_key should be unique every time. Now we manually change it
trials = MongoTrials('mongo://localhost:1234/db/jobs', exp_key='some_new_key')
trials = MongoTrials('mongo://localhost:1234/db/jobs', exp_key='knoert_klokiebril')
# trials = Trials()
out_param_dict = hp.fmin(fmin_objective,
space=space,
algo=hp.tpe.suggest,
......
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