adarank 0.1.0

AdaRank: a boosting algorithm for information retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Copyright (c) 2021 Marcos Pontes
/// MIT License
///

///
/// This module  contains the implementation of weak rankers used on
/// ensemble methods.   
///

/// Weak ranker definition as components for the ensemble methods.
pub mod weak;

///
/// This module  contains the implementation of the ensemble method AdaRank
///
pub mod adarank;