25 Matching Annotations
  1. Last 7 days
    1. Then resample the particles based on the weights at time k to obtain the forecast particles for the time points up to k.

      This part is missing in the app. Corrected in the document

  2. Aug 2025
  3. preview.neurasense.io:30005 preview.neurasense.io:30005
  4. Jul 2025
  5. Jun 2025
    1. The likelihood is approximated

      This has a nice close form in normal measurement error. Should check if it is still possible with t-errors.

    2. for (s in 1:S) { bio_sims <- rnorm(K, theta_new_samples_pop[s], sigma_bio_samples[s, 1]) weights_k <- numeric(K) for (k in 1:K) { weights_k[k] <- exp(log(dt((y_new_1 - bio_sims[k]) / sigma_X_samples[s, 1], df = df_samples[s, 1] ) / sigma_X_samples[s, 1]) + log(dt((y_new_2 - bio_sims[k]) / sigma_X_samples[s, 1], df = df_samples[s, 1] ) / sigma_X_samples[s, 1])) } weights_steady[s] <- mean(weights_k, na.rm = T) }

      something like: bio_sims <- rnorm((K, N), theta_new_samples, sigma_bio_samples) to sample a matrix of (K,N) normal random values and then plug that into dt(...) and then take the mean over the K axis of the matrix. Or you could at least vectorize the inner loop by first creating a vector of v_diff <- (y_new_1 - bio_sims)/sigma_X_samples and then do exp(log(dt(v_diff))... etc

    1. It seems like the

      Can do noise calibration. X axis: Cr region percentage; Y axis: Proportion of data points included and do eCDF type graph, then decide on the optimum.

      Or simply, select 80% coverage in 80% interval or so

    Annotators

  6. May 2025