-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add optional max and min state values in iterate_dynamic_function() to help prevent numerical over/underflow #29
Comments
e.g. ideally this wouldn't overflow to Infinity library(greta.dynamics)
#> Loading required package: greta
#>
#> Attaching package: 'greta'
#> The following objects are masked from 'package:stats':
#>
#> binomial, cov2cor, poisson
#> The following objects are masked from 'package:base':
#>
#> %*%, apply, backsolve, beta, chol2inv, colMeans, colSums, diag,
#> eigen, forwardsolve, gamma, identity, rowMeans, rowSums, sweep,
#> tapply
fun <- function(state, iter, r) {
state * r
}
n_times <- 200
r <- normal(0, 100, truncation = c(0, Inf))
#> ℹ Initialising python and checking dependencies, this may take a moment.
#> ✔ Initialising python and checking dependencies ... done!
#>
results <- iterate_dynamic_function(fun,
initial_state = 1,
tol = 0,
niter = n_times,
r = r)
set.seed(1)
vals <- calculate(results$all_states,
nsim = 1)
tail(vals[[1]][1, , ], 30)
#> [1] 6.717551e+296 3.656307e+298 1.990097e+300 1.083193e+302 5.895729e+303
#> [6] 3.208996e+305 1.746630e+307 Inf Inf Inf
#> [11] Inf Inf Inf Inf Inf
#> [16] Inf Inf Inf Inf Inf
#> [21] Inf Inf Inf Inf Inf
#> [26] Inf Inf Inf Inf Inf Created on 2024-03-13 with reprex v2.0.2 |
Merged
#30 looks like this now: library(greta.dynamics)
#> Loading required package: greta
#>
#> Attaching package: 'greta'
#> The following objects are masked from 'package:stats':
#>
#> binomial, cov2cor, poisson
#> The following objects are masked from 'package:base':
#>
#> %*%, apply, backsolve, beta, chol2inv, colMeans, colSums, diag,
#> eigen, forwardsolve, gamma, identity, rowMeans, rowSums, sweep,
#> tapply
fun <- function(state, iter, r) {
state * r
}
n_times <- 200
r <- normal(0, 100, truncation = c(0, Inf))
#> ℹ Initialising python and checking dependencies, this may take a moment.
#> ✔ Initialising python and checking dependencies ... done!
#>
results <- iterate_dynamic_function(fun,
initial_state = 1,
tol = 0,
niter = n_times,
r = r)
set.seed(1)
vals <- calculate(results$all_states,
nsim = 1)
tail(vals[[1]][1, , ], 30)
#> [1] 6.717551e+296 3.656307e+298 1.990097e+300 1.083193e+302 5.895729e+303
#> [6] 3.208996e+305 1.746630e+307 Inf Inf Inf
#> [11] Inf Inf Inf Inf Inf
#> [16] Inf Inf Inf Inf Inf
#> [21] Inf Inf Inf Inf Inf
#> [26] Inf Inf Inf Inf Inf
r <- normal(0, 100, truncation = c(0, Inf))
results <- iterate_dynamic_function(fun,
initial_state = 1,
tol = 0,
niter = n_times,
r = r,
state_limits = c(0, 1e3))
set.seed(1)
vals <- calculate(results$all_states,
nsim = 1)
tail(vals[[1]][1, , ], 30)
#> [1] 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000
#> [16] 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 Created on 2024-03-13 with reprex v2.0.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
only on
greta_2
branch for nowThe text was updated successfully, but these errors were encountered: