ExtractionRunCounts

data class ExtractionRunCounts constructor(val sourcesRead: Int = 0, val chunksProcessed: Int = 0, val propositionsExtracted: Int = 0, val propositionsPersisted: Int = 0, val propositionsRejected: Int = 0, val entitiesResolved: Int = 0)

How much a run got through.

Counts are what a run page sorts and filters on, so they sit on the header rather than being derived by counting rows. They are recorded by whoever ran the extraction; nothing here cross-checks one against another, because a run that extracted 40 propositions and persisted 12 is a real and interesting state, not a contradiction.

EXPERIMENTAL. The shape may still change while extraction runs (DICE #67) land.

Constructors

Link copied to clipboard
constructor(sourcesRead: Int = 0, chunksProcessed: Int = 0, propositionsExtracted: Int = 0, propositionsPersisted: Int = 0, propositionsRejected: Int = 0, entitiesResolved: Int = 0)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

How many chunks reached extraction

Link copied to clipboard

How many entity mentions were resolved

Link copied to clipboard

How many propositions the model produced

Link copied to clipboard

How many were stored

Link copied to clipboard

How many were dropped by a gate or a filter

Link copied to clipboard
val sourcesRead: Int = 0

How many source revisions the run read