@(numManual: Long, numAutomatic: Long, numValidated: Long, numRejected: Long, patterns: List[Pattern])
Networks of Names
Tags
- Number of manual tags
- @numManual
- Number of automatic tags
- @numAutomatic
- Validation
-
validated: @{ numValidated },
rejected: @{ numRejected }
(coverage: @if(numAutomatic > 0) { @("%.4f".format((numValidated + numRejected).toDouble / numAutomatic)) } )
Patterns
| Rule |
applied |
pos |
neg |
p |
c |
disabled |
functions |
@for(pattern <- patterns) {
| @pattern.rule |
@pattern.timesApplied |
@pattern.positiveVotes |
@pattern.negativeVotes |
@("%.2f".format(pattern.performance)) |
@("%.4f".format(pattern.coverage)) |
@if(pattern.disabled) { X } |
view
apply
disable
|
}