suppose I run the following regression:

Code:
reghdfe y x1 x2 x3  if train == 1, abs(fe1 fe2) cluster(fe1)
predict pall
reg y pall if test == 1, nocons
Am I right in that the RMSE reported in the second regression is the RMSE of the true value (y) and what my model would have predicted (pall)?