Skip to content

Commit

Permalink
Supress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kokoff committed Mar 7, 2018
1 parent b588a8d commit 7cd64ba
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/neuralnets/models/run_models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import warnings
warnings.filterwarnings("ignore")

from mlp import mlp

from collections import OrderedDict
Expand All @@ -6,6 +9,8 @@

from src.neuralnets.hypersearch import HyperSearch, var, choice



one_one = [([i], [i]) for i in VARIABLES]
all_one = [(VARIABLES, [i]) for i in VARIABLES]
all_all = [(VARIABLES, VARIABLES)]
Expand Down

0 comments on commit 7cd64ba

Please sign in to comment.