mirror of
https://github.com/rdk/p2rank.git
synced 2026-06-04 12:44:24 +08:00
26 lines
532 B
Groovy
26 lines
532 B
Groovy
import cz.siret.prank.program.params.Params
|
|
|
|
/**
|
|
* For development.
|
|
*
|
|
* Config that is mostly the same as the default config in distro/config/default.groovy,
|
|
* just some technical parameters are changed. Used for running experiments during development.
|
|
*/
|
|
(params as Params).with {
|
|
|
|
dataset_base_dir = "../../p2rank-datasets"
|
|
|
|
output_base_dir = "../../p2rank-results/${version}"
|
|
|
|
visualizations = false
|
|
|
|
fail_fast = false
|
|
|
|
log_to_console = true
|
|
|
|
rf_flatten = false
|
|
|
|
rf_batch_prediction = true
|
|
|
|
}
|