From 56eeb05b4394c9c420932bea254dcfc813092d45 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 21 Feb 2016 18:07:05 +0100 Subject: optimiere Konfiguration --- boston.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/boston.py b/boston.py index 7968dec..e8382de 100644 --- a/boston.py +++ b/boston.py @@ -23,13 +23,13 @@ x_train, x_test, y_train, y_test = train_test_split( ) BATCH = 50 -STEPS = 100 # epochs -HIDDEN = 9 # hidden nodes in 1 layer +STEPS = 300 # epochs +HIDDEN = 11 # hidden nodes in 1 layer IN = 13 # input nodes OUT = 1 # output node(s) -LEARNINGRATE = 0.1 -DECAYRATE = 0.95 -DECAYSTEPS = 10 +LEARNINGRATE = 0.01 +DECAYRATE = 0.96 +DECAYSTEPS = 50 RUNNAME = 'B'+str(BATCH)+'S'+str(STEPS)+'H'+str(HIDDEN)+'LR'+str(LEARNINGRATE)\ + 'DR'+str(DECAYRATE)+'DS'+str(DECAYSTEPS)+'SD'+str(SEED) -- cgit v1.3.1