1) Introduction to Pytorch Pytorch 딥러닝 전 과정에서 쓰이는 가장 기본이 되는 프레임워크 Pytorch(facebook) vs Tensorflow(google) Keras wrapper(껍데기), High level API Tensorflow는 Static graph (Define and run) Pytorch는 Dynamic computation graph (자동미분시 실행 시점에서 그래프 정의) Computational Graph 연산의 과정을 그래프로 표현 Define and Run (Tensorflow) 그래프를 먼저 정의 -> 실행시점에 데이터 feed Define by Run (Pytorch) 실행을 하면서 그래프를 생성하는 방식 tensorflow Producti..