Fix help text references to E-M algorithm

This commit is contained in:
RunasSudo 2023-04-30 15:46:13 +10:00
parent 14c1944f92
commit 8aad020521
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 2 additions and 2 deletions

View File

@ -43,11 +43,11 @@ pub struct IntCoxArgs {
#[arg(long, value_enum, default_value="text")] #[arg(long, value_enum, default_value="text")]
output: OutputFormat, output: OutputFormat,
/// Maximum number of E-M iterations to attempt /// Maximum number of iterations to attempt
#[arg(long, default_value="1000")] #[arg(long, default_value="1000")]
max_iterations: u32, max_iterations: u32,
/// Terminate E-M algorithm when the absolute change in log-likelihood is less than this tolerance /// Terminate algorithm when the absolute change in log-likelihood is less than this tolerance
#[arg(long, default_value="0.01")] #[arg(long, default_value="0.01")]
ll_tolerance: f64, ll_tolerance: f64,
} }