Skip to content

Commit

Permalink
Fix datagen with --segmenter-lstm-root
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Nov 13, 2023
1 parent 4a6df7b commit 0551d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/datagen/src/bin/datagen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fn main() -> eyre::Result<()> {
};

provider = match config.segmenter_lstm {
config::PathOrTag::Path(path) => provider.with_icuexport(path)?,
config::PathOrTag::Path(path) => provider.with_segmenter_lstm(path)?,
#[cfg(feature = "networking")]
config::PathOrTag::Latest => {
provider.with_segmenter_lstm_for_tag(DatagenProvider::LATEST_TESTED_SEGMENTER_LSTM_TAG)
Expand Down

0 comments on commit 0551d70

Please sign in to comment.