Web-based responsive document annotation tool
activeannoservice / annotationdefinition.generator / UpdateResponse
data class UpdateResponse
| Name | Summary |
|---|---|
| <init> | UpdateResponse(score: Double?, numberOfExamples: Int, version: Int, timestamp: Long = System.currentTimeMillis()) |
| Name | Summary |
|---|---|
| numberOfExamples | How many samples were used to train the model (if online learning, the sum of all previous samples as well)val numberOfExamples: Int |
| score | Some quality score where higher means better. Can be F1 score, accuracy score, MEA, MSE, etc. depending on the implementationval score: Double? |
| timestamp | Creation timestamp of the UpdateResponse (when was the update finished)val timestamp: Long |
| version | What version number was assigned to this generator versionval version: Int |