Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

Browse Source

[DATALAD] Recorded changes

Lucas Gautheron 8 hours ago
parent
commit
a3047707ac
1 changed files with 4 additions and 4 deletions
  1. 4 4
      code/models/blocks/human_annotations_simple.stan

+ 4 - 4
code/models/blocks/human_annotations_simple.stan

@@ -22,14 +22,14 @@ for (c in 1:n_speech_rate_children) {
 
         speech_rate_child_level[c,1] ~ gamma(
             alpha_pop_level[distrib,1],
-            (alpha_pop_level[distrib,1]/(mu_pop_level[1]*exp(
+            (alpha_pop_level[distrib,1]/(mu_pop_level[2]*exp(
                 speech_rate_child_siblings[c]==0?beta_sib_och:0
             )))
         );
 
         speech_rate_child_level[c,2:] ~ gamma(
             alpha_pop_level[distrib,2:],
-            (to_vector(alpha_pop_level[distrib,2:])./(mu_pop_level[2:]*exp(
+            (to_vector(alpha_pop_level[distrib,2:])./(mu_pop_level[3:]*exp(
                 speech_rate_child_siblings[c]==0?beta_sib_adu/10.0:0
             )))
         );
@@ -41,12 +41,12 @@ for (c in 1:n_speech_rate_children) {
             
             ll_child[distrib] = sib==0?log1m(p_sib):log(p_sib);
             ll_child[distrib] += gamma_lpdf(speech_rate_child_level[c,1] | alpha_pop_level[distrib,1],
-                (alpha_pop_level[distrib,1]/(mu_pop_level[1]*exp(
+                (alpha_pop_level[distrib,1]/(mu_pop_level[2]*exp(
                     sib==0?beta_sib_och:0
                 )))
             );
             ll_child[distrib] += gamma_lpdf(speech_rate_child_level[c,2:] | alpha_pop_level[distrib,2:],
-                (to_vector(alpha_pop_level[distrib,2:])./(mu_pop_level[2:]*exp(
+                (to_vector(alpha_pop_level[distrib,2:])./(mu_pop_level[3:]*exp(
                     sib==0?beta_sib_adu/10.0:0
                 )))
             );