fix style
This commit is contained in:
parent
13e92bed6a
commit
e55aef5483
|
@ -239,7 +239,8 @@ class NeuralNet(object):
|
||||||
self.vars['b2_']: b2, self.vars['b3_']: b3,
|
self.vars['b2_']: b2, self.vars['b3_']: b3,
|
||||||
self.vars['X_max_']: X_max,
|
self.vars['X_max_']: X_max,
|
||||||
self.vars['X_min_']: X_min})
|
self.vars['X_min_']: X_min})
|
||||||
X_recommend = sess.run(self.vars['x_bounded_'], feed_dict={self.vars['X_max_']: X_max,
|
X_recommend = sess.run(self.vars['x_bounded_'],
|
||||||
|
feed_dict={self.vars['X_max_']: X_max,
|
||||||
self.vars['X_min_']: X_min})
|
self.vars['X_min_']: X_min})
|
||||||
res = NeuralNetResult(minl=y_recommend, minl_conf=X_recommend)
|
res = NeuralNetResult(minl=y_recommend, minl_conf=X_recommend)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue