- IncrementalLearningSkeleton - Class in org.apache.flink.streaming.examples.ml
-
Skeleton for incremental machine learning algorithm consisting of a
pre-computed model, which gets updated for the new inputs and new input data
for which the job provides predictions.
- IncrementalLearningSkeleton() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton
-
- IncrementalLearningSkeleton.FiniteNewDataSource - Class in org.apache.flink.streaming.examples.ml
-
Feeds new data for newData.
- IncrementalLearningSkeleton.FiniteTrainingDataSource - Class in org.apache.flink.streaming.examples.ml
-
Feeds new training data for the partial model builder.
- IncrementalLearningSkeleton.PartialModelBuilder - Class in org.apache.flink.streaming.examples.ml
-
Builds up-to-date partial models on new training data.
- IncrementalLearningSkeleton.Predictor - Class in org.apache.flink.streaming.examples.ml
-
Creates newData using the model produced in batch-processing and the
up-to-date partial model.
- IncrementalLearningSkeletonData - Class in org.apache.flink.streaming.examples.ml.util
-
Data for IncrementalLearningSkeletonITCase.
- INPUT_PAIRS - Static variable in class org.apache.flink.streaming.examples.iteration.util.IterateExampleData
-
- InputMap() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample.InputMap
-
- isEndOfStream(Event) - Method in class org.apache.flink.streaming.examples.statemachine.kafka.EventDeSerializer
-
- isTerminal() - Method in enum org.apache.flink.streaming.examples.statemachine.dfa.State
-
Checks if this state is a terminal state.
- IterateExample - Class in org.apache.flink.streaming.examples.iteration
-
Example illustrating iterations in Flink streaming.
- IterateExample() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample
-
- IterateExample.InputMap - Class in org.apache.flink.streaming.examples.iteration
-
Map the inputs so that the next Fibonacci numbers can be calculated while preserving the original input tuple.
- IterateExample.MySelector - Class in org.apache.flink.streaming.examples.iteration
-
OutputSelector testing which tuple needs to be iterated again.
- IterateExample.OutputMap - Class in org.apache.flink.streaming.examples.iteration
-
Giving back the input pair and the counter.
- IterateExample.Step - Class in org.apache.flink.streaming.examples.iteration
-
Iteration step function that calculates the next Fibonacci number.
- IterateExampleData - Class in org.apache.flink.streaming.examples.iteration.util
-
Data for IterateExampleITCase.