Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | """ |
||
2 | Module used to run the CrowdTruth metrics. |
||
3 | """ |
||
4 | |||
5 | 1 | from crowdtruth.models.metrics import Metrics |
|
6 | |||
7 | 1 | def run(data, config): |
|
8 | """Run the CrowdTruth metrics with the given processing configuration""" |
||
9 | |||
10 | 1 | processed_results = Metrics.run(data, config) |
|
11 | return processed_results |
||
12 |