forked from Lefteris008/EvS
-
Notifications
You must be signed in to change notification settings - Fork 0
07. Evaluation Module
Lefteris Paraskevas edited this page Apr 24, 2016
·
1 revision
The Evaluator Module provides functionality in order to evaluate a given Event Detection algorithm, comparing its results to a specified ground truth dataset.
How to implement an Evaluator for my new ED algorithm?
You have to implement the AbstractEvaluator interface and implement all of its methods. The process of loading the ground truth data occurs once in the default constructor (loadGroundTruth()) and you have to specifically write your own code that loads the aforementioned set.
Do I have to follow a specific schema for my ground truth set?
No, you are free to use your own schema and no specific structure is provided. As the file is loaded inside the loadGroundTruth() method, you can use whatever schema you wish.