**Q1:** Observation function is constrained to a normal distribution with fixed variance...
**A1:** Our model supports and can be easily extended to other observation likelihood models. This would only require a reparameterization such that the observation function $g$ (in Eq. 11) returns parameters of the new distribution.
--------------------
**Q2:** It would be valuable to understand the limits of the method, its computational cost, and the time this architecture needs to train...
**A2:** As we mention in line 318, our method requires at most 1.5 hours of training. We also discuss limitations of our model at the end of Section 7. Our method, as many others, requires hyperparameter tuning to achieve best predictive performance, but it is rather robust to many hyperparameters, with the latent state dimension $d_z$, and complexities of the dynamics function $f$ and latent state decoder $\phi$ being most important hyperparameters to tune.
--------------------
**Q3:** No runtime comparison of the different models provided ... Please provide information about the runtime of the entire model when generating a rollout of a spatiotemporal sequence of frames.
**A3:** In our experiments, system dynamics simulation is the largest contributor to the entire model runtime. For example, on the Navier-Stokes dataset, which has the largest number of positions of interest, the runtime split across the model components is: encoder - 10\%, dynamics - 63\%, decoder - 27\%. Note that these numbers are with the latent space interpolation. Without it, dynamics simulation effectively takes all of the model runtime.
--------------------
**Q4:** More details about the differences between the introduced method and AutoSTPP would be valuable...
**A4:** The major advantage of our model over AutoSTPP is that our model leverages the observed system states $y$ to better model the observation process of $t$ and $x$, while AutoSTPP doesn't.
--------------------
**Q5:** For what reason is the distribution of the next sensor signal's location predicted? What is the benefit of such a prediction and what computational cost does it impose?
**A5:** Modeling observation times and locations is fundamental for spatio-temporal point processes, which our method combines with simultaneously modeling the observations of the underlying spatio-temporal dynamics. Table 2 indeed shows that if the sensor locations are known, modeling them does not improve the model's predictive accuracy. However, systems we consider in our work produce observations at random spatiotemporal locations, so the sensor locations are unknown at test time. This means we need to predict where the observations will be made. Modeling sensor locations takes ≈15\% of the total runtime.
--------------------
**Q6:** Have you tried higher-order interpolations? What is the error that incurs from the interpolation compared to modeling the full temporal grid?
**A6:** We didn't consider higher order methods because the nearest neighbor and linear interpolation approach the full temporal grid errors for sufficient number of interpolation points ($n=50$ in our case).
--------------------
**Q7:** Have you explored other solvers beyond dopri5, such as Euler, which is much cheaper? ... Figure 2 somehow suggest that the effectively processed time steps $\tau_m$ are separated by a constant time delta. Is this a requirement of the architecture?
**A7:** Yes, the time steps $\tau_1, \dots, \tau_n$ are separated by a constant time, which allows to use e.g., the Euler solver. However, our method is not constrained by this assumption and works with both regular and irregular time grids as well as fixed and adaptive step sizes. We tried both Euler and dopri5 solvers with 20 interpolation points ($n=20$), and the training time difference was small (41 min for Euler, and 49 min for dopri5); the predictive performance for both solvers was similar as well (within 3\% of each other).
--------------------
**Q8:** How does the latent space dimensionality affect the runtime? Might be interesting to report along with its effect on the parameter count around line 375.
**A8:** To answer this question we measure the runtime using on our Navier-Stokes dataset as this is the largest dataset in our work and we use the model with the largest number of parameters for it. We measure the total training time and the total number of model parameters as a function of the latent space dimension $d_z$:
| $d_z$ | Time | Parameters |
|-----|--------|---------|
| 368 (default) | 45 min | 3022210 |
| 184 | 43 min | 2721002 |
| 92 | 43 min | 2570398 |
| 46 | 43 min | 2495096 |
We see that the both the training time and number of parameters are rather weakly affected by the latent space dimension.
We thank the reviewer for careful reading and comments. We will incorporate the above comments and clarifications into the revised manuscript.