Last change
on this file since 15785 was
14710,
checked in by jzenisek, 8 years ago
|
#2719 implemented ensemble model rating by introducing the new type RatedEnsembleModel; introduced performance indicator calculation in results;
|
File size:
405 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.DatastreamAnalysis {
|
---|
9 | public interface IRatedEnsembleModel : IParameterizedItem {
|
---|
10 | IEnumerable<IParameterizedItem> ExecutionContextItems { get; }
|
---|
11 | event EventHandler Reset;
|
---|
12 | event EventHandler ModelChanged;
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.