GaussianProcess
[Probability] Gaussian Process
🪴 Task 하나의 함수에서 나오는 context dataset 이 다음과 같이 주어져있을 때 $$Context: \big\{(x_1, y_1), (x_2, y_2), ..., (x_c, y_c)\big\}$$ 이 주어졌을 때 $$Target: x_1^*, x_2^*, ..., x_t^*$$의 y값을 예측하는 방법 🪴 Gaussian Process Gaussian Process에서는 예측값을 Normal distribution으로, distribution over target 값들을 나타낸다. 즉, $$\hat{y}_1^* \sim \mathcal{N}(\mu_{y_1^*}, \sigma_{y_1^*})$$ $$\hat{y}_2^* \sim \mathcal{N}(\mu_{y_2^*}, \sigma_{y_..