sibonli / blue-beast

Automatically exported from code.google.com/p/blue-beast
3 stars 1 forks source link

calculate progress for Geweke and Raftery #13

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Z-score calculation for Geweke

Regression based progress report for Raftery? 

Original issue reported on code.google.com by Sibon...@gmail.com on 19 Oct 2012 at 4:08

GoogleCodeExporter commented 9 years ago
at the end of the day, we only want one % progress. So, should we just use 
double progress;
instead of 
double[] progress;
within each **ConvgStat

Original comment by steven...@gmail.com on 19 Oct 2012 at 5:11

GoogleCodeExporter commented 9 years ago
maybe we can have two methods: 

double[] getConvergenceProgressValues() {
    return progress;
}

double getConvergenceProgress() {
    return StatUtils.min(getConvergenceProgressValues());
}

Original comment by Sibon...@gmail.com on 19 Oct 2012 at 5:15

GoogleCodeExporter commented 9 years ago
but will we ever use this one in practice? except debugging

Original comment by steven...@gmail.com on 19 Oct 2012 at 5:17

GoogleCodeExporter commented 9 years ago
No, probably not. We could just put all the code into one method then I guess

Original comment by Sibon...@gmail.com on 19 Oct 2012 at 5:29

GoogleCodeExporter commented 9 years ago
Love this issue/ticket thing lol

Original comment by steven...@gmail.com on 19 Oct 2012 at 5:57

GoogleCodeExporter commented 9 years ago

Original comment by Sibon...@gmail.com on 17 Nov 2012 at 12:39