Crates.io | vindicator |
lib.rs | vindicator |
version | 0.1.0 |
source | src |
created_at | 2019-02-04 16:31:47.30414 |
updated_at | 2019-02-04 16:31:47.30414 |
description | Search list manipulation framework for multi-source information retrieval |
homepage | |
repository | https://github.com/Enet4/vindicator |
max_upload_size | |
id | 112678 |
size | 35,160 |
A list manipulation framework for multi-source information retrieval.
This is a work in progress, more features and major API changes may happen.
USAGE:
vindicator <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
help Prints this message or the help of the given subcommand(s)
merge Perform late fusion of search result lists
USAGE:
vindicator merge [OPTIONS] -f <fuser> [files]...
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-f <fuser> Result fusion algorithm
-o <output> Output file (print to stdout by default)
ARGS:
<files>... The input lists
Please see the documentation for more.
use vindicator::{comb_mnz, fuse_scored, parse_from_trec};
let raw_data = std::fs::read_to_string("trec_file.txt")?;
let data = files_data
.iter()
.map(|data| trec::parse_from_trec(data))
.collect::<Result<Vec<_>, _>>()?;
let fusion = fuse_scored(comb_mnz, comb_mnz);
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.