예제 #1
0
 def func_x(x):
     connection.forward_pass(theta, [x], out_buf)
     return sum_of_squares_error(out_buf, T)
예제 #2
0
 def func_x(x):
     connection.forward_pass(theta, [x], out_buf)
     return sum_of_squares_error(out_buf, T)
예제 #3
0
 def func_theta(th):
     connection.forward_pass(th, X_list, out_buf)
     return sum_of_squares_error(out_buf, T)
예제 #4
0
 def func_theta(th):
     connection.forward_pass(th, X_list, out_buf)
     return sum_of_squares_error(out_buf, T)