Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dagou committed Jun 23, 2024
1 parent 75b59b4 commit 0cd10e4
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Options:
-p, --num-threads <NUM_THREADS>
The number of threads to use [default: 10]
--batch-size <BATCH_SIZE>
批量处理大小 default: 16MB [default: 16777216]
[default: 16777216]
-T, --confidence-threshold <CONFIDENCE_THRESHOLD>
Confidence score threshold [default: 0]
-g, --minimum-hit-groups <MINIMUM_HIT_GROUPS>
Expand Down
1 change: 0 additions & 1 deletion kr2r/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ pub struct ClassifyArgs {
#[clap(short = 'p', long = "num-threads", value_parser, default_value_t = num_cpus::get())]
pub num_threads: usize,

/// 批量处理大小 default: 16MB
#[clap(long, default_value_t = BATCH_SIZE)]
pub batch_size: usize,

Expand Down
1 change: 0 additions & 1 deletion kr2r/src/bin/annotate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ pub struct Args {
#[clap(long)]
pub chunk_dir: PathBuf,

/// 批量处理大小 default: 8MB
#[clap(long, default_value_t = BATCH_SIZE)]
pub batch_size: usize,
}
Expand Down
1 change: 0 additions & 1 deletion kr2r/src/bin/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ pub struct Args {
)]
pub minimum_hit_groups: usize,

/// 批量处理大小 default: 8MB
#[clap(long, default_value_t = BATCH_SIZE)]
pub batch_size: usize,

Expand Down

0 comments on commit 0cd10e4

Please sign in to comment.