Skip to content

Commit

Permalink
stan demos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jachym.Barvinek committed Aug 3, 2024
1 parent 0223d24 commit 8e57bcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/stan_demos/poisson_glm.stan
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
data {
int<lower=1> N;
int<lower=1> K;
array[N] int<lower=0> y;
matrix[N, K] x; // features
int<lower=1> K; // num features
int<lower=K+1> N; // num samples
array[N] int<lower=0> y; // response
matrix[N, K] x; // features
}
parameters {
real alpha;
Expand Down

0 comments on commit 8e57bcb

Please sign in to comment.