Skip to content

Commit

Permalink
pipeline holdout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
illided committed Feb 15, 2022
1 parent 6a2d0bf commit 2c849f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/astminer/pipeline/Pipeline.kt
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ class Pipeline(private val config: PipelineConfig) {
if (config.compressBeforeSaving) { results.toStructurallyNormalized() } else { results }
}
synchronized(this) {
storage.store(labeledResults)
metaStorage?.store(labeledResults)
storage.store(labeledResults, holdoutType)
metaStorage?.store(labeledResults, holdoutType)
}
progressBar.step()
}
Expand Down

0 comments on commit 2c849f5

Please sign in to comment.