04-1. Multi-variable linear regression
■ 여러개의 입력이 있는 경우의 linear regression x1_data , x2_data, x3_data , y_data - 여러 입력을 각각의 1행 5열 배열로 처리 hypothesis = x1*w1 + x2*w2 + x3*w3 +b - 여러 입력에 대한 hypothesis 적용 cost_val, hy_val, _ = sess.run([cost,hypothesis,train], feed_dict= {x1:x1_data,x2:x2_data,x3:x3_data,Y:y_data}) - feed_dict 를 통하여 여러 입력을 대입 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525..
더보기