Update classifier parameters
This commit is contained in:
parent
7ee8776165
commit
3248977e02
@ -61,13 +61,12 @@ template <class DataFacadeT> class MapMatchingPlugin : public BasePlugin
|
|||||||
public:
|
public:
|
||||||
MapMatchingPlugin(DataFacadeT *facade, const int max_locations_map_matching)
|
MapMatchingPlugin(DataFacadeT *facade, const int max_locations_map_matching)
|
||||||
: descriptor_string("match"), facade(facade),
|
: descriptor_string("match"), facade(facade),
|
||||||
max_locations_map_matching(max_locations_map_matching)
|
max_locations_map_matching(max_locations_map_matching),
|
||||||
// the values where derived from fitting a laplace distribution
|
// the values where derived from fitting a laplace distribution
|
||||||
// to the values of manually classified traces
|
// to the values of manually classified traces
|
||||||
,
|
classifier(LaplaceDistribution(0.005986, 0.016646),
|
||||||
classifier(LaplaceDistribution(0.0057154021891018675, 0.020294704891166186),
|
LaplaceDistribution(0.054385, 0.458432),
|
||||||
LaplaceDistribution(0.11467696742821254, 0.49918444000368756),
|
0.696774) // valid apriori probability
|
||||||
0.7977883096366508) // valid apriori probability
|
|
||||||
{
|
{
|
||||||
search_engine_ptr = std::make_shared<SearchEngine<DataFacadeT>>(facade);
|
search_engine_ptr = std::make_shared<SearchEngine<DataFacadeT>>(facade);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user