Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -579,7 +579,6 @@ public void testInformationSchema() throws SQLException {
"_NaiveForecaster,",
"_sundial,",
"_HoltWinters,",
"_TimerXL,",
"_ExponentialSmoothing,",
"_ARIMA,")));

Expand DownExpand Up@@ -702,7 +701,6 @@ public void testInformationSchema() throws SQLException {
new HashSet<>(
Arrays.asList(
"_sundial,",
"_TimerXL,",
"_STLForecaster,",
"_NaiveForecaster,",
"_HoltWinters,",
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -74,10 +74,7 @@ public class ModelInfo implements SnapshotProcessor {

private static final Set<String> builtInAnomalyDetectionModel = new HashSet<>();

private static final int timerXLInputLength = 2880;

static {
builtInForecastModel.add("_TimerXL");
builtInForecastModel.add("_ARIMA");
builtInForecastModel.add("_NaiveForecaster");
builtInForecastModel.add("_STLForecaster");
Expand DownExpand Up@@ -273,9 +270,6 @@ public GetModelInfoResp getModelInfo(GetModelInfoPlan plan) {
// check if it's a built-in model
if ((modelType = checkModelType(modelName)) != ModelType.USER_DEFINED) {
modelInformation = new ModelInformation(modelType, modelName);
if (modelName.equalsIgnoreCase("_timerxl")) {
modelInformation.setInputLength(timerXLInputLength);
}
} else {
modelInformation = modelTable.getModelInformationById(modelName);
}
Expand Down