WindowConfig

data class WindowConfig(val windowSize: Int = 20, val overlapSize: Int = 2, val triggerInterval: Int = 4)

Configuration for windowed processing.

Constructors

Link copied to clipboard
constructor(windowSize: Int = 20, overlapSize: Int = 2, triggerInterval: Int = 4)

Properties

Link copied to clipboard
val overlapSize: Int = 2

Number of items to overlap between windows for context.

Link copied to clipboard

Minimum number of new items required before triggering analysis.

Link copied to clipboard
val windowSize: Int = 20

Maximum number of items to process in one window.