Skip to content

Commit ef5ed7b

Browse files
committed
Fix tab-space indentation incosistencies
1 parent 549bd65 commit ef5ed7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plasma/models/runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ def keras_fmin_fnct(self,space):
132132
training_losses = []
133133
shot_list_train,shot_list_validate = self.shot_list.split_direct(1.0-conf['training']['validation_frac'],do_shuffle=True)
134134

135-
from keras.utils.generic_utils import Progbar
136-
from keras import backend as K
135+
from keras.utils.generic_utils import Progbar
136+
from keras import backend as K
137137

138138
num_epochs = self.conf['training']['num_epochs']
139139
num_at_once = self.conf['training']['num_shots_at_once']
@@ -188,7 +188,7 @@ def get_space(self):
188188
}
189189

190190
def frnn_minimize(self, algo, max_evals, trials, rseed=1337):
191-
from hyperopt import fmin
191+
from hyperopt import fmin
192192

193193
best_run = fmin(self.keras_fmin_fnct,
194194
space=self.get_space(),

0 commit comments

Comments
 (0)