Guest User

Untitled

a guest
Oct 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def train(self, input_vects):
  2. for iter_no in range(self._num_iter):
  3. for input_vect in input_vects:
  4. self._sess.run(self._training,
  5. feed_dict={self._input_sample: input_vect})
Add Comment
Please, Sign In to add comment