Skip to content
Snippets Groups Projects
Commit 672f77d2 authored by Phil Höfer's avatar Phil Höfer
Browse files

Expand data file locations

parent 0e9b99c2
No related branches found
No related tags found
No related merge requests found
Pipeline #9870 passed
......@@ -40,8 +40,8 @@ fn main() -> Result<(), io::Error> {
let markov_chain = basic_set::from_file_path_and_config("../../data/data.csv",config.clone())
.unwrap_or(basic_set::from_file_path_and_config("data/data.csv",config.clone())
.unwrap_or(basic_set::from_file_path_and_config("data.csv",config.clone())
.unwrap_or(basic_set::SetPredictor::new()));
.unwrap_or(basic_set::from_file_path_and_config("data.csv",config.clone())
.unwrap_or(basic_set::SetPredictor::new())));
// let term_frequency_threshold = match config.get("term_frequency_threshold") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment