[선형대수] Systems of Linear Equation
Systems of Linear Equations F를 field라고 가정하면, 아래의 조건을 만족하는 n개의 scalar x1, x2, ... , xn 를 찾는 문제를 고려해봅시다. 여기서 y1, ..., ym은 F의 주어진 element입니다. 위의 1-1 을 n개의 unknowns에 대한 m개의 linear equation의 system이라고 부릅니다. 여기서 (x1, ..., xn), 각 equation을 만족하는 n-tuple을 system의 solution이라고 부릅니다. 만약, y1 = y2 = ... = ym = 0이라면, 이 system은 homogeneous 하다고 말합니다. 이런 equation에서 solution을 찾는 가장 기초적은 technique은 technique of eli..
RuntimeError: Given groups=1, weight of size [400, 256, 1, 1], expected input[64, 3, 1, 1] to have 256 channels, but got 3 channels instead
# 에러 내용 RuntimeError: Given groups=1, weight of size [400, 256, 1, 1], expected input[64, 3, 1, 1] to have 256 channels, but got 3 channels instead # 원인 nn.DataParallel 을 사용할 수 없음 ( torch 1.5-1.7 ) # 해결방안 torch 1.2로 downgrade