#5 -- restore warning message and fix readme
This commit is contained in:
parent
9560190368
commit
662e1f6588
@ -4,4 +4,4 @@ Build with gradle
|
||||
|
||||
API http://localhost:8080/swagger-ui.html
|
||||
|
||||
Demo http://193.110.3.124:8010
|
||||
Demo http://time-series.athene.tech/
|
@ -28,7 +28,7 @@ public class Smape extends ScoreMethod {
|
||||
//double actualValue = getValueOnSameDate(modelValue, original).getValue();
|
||||
double actualValue = Optional.ofNullable(tsValues.get(modelValue.getDate()))
|
||||
.orElseThrow(() -> new ModelingException("Значение модельного ряда не найдено в оригинальном ряде: "
|
||||
+ modelValue.getDate() + " " + tsValues + " " + model));
|
||||
+ modelValue.getDate()));
|
||||
sum += abs(modelValue.getValue() - actualValue)
|
||||
/ ((abs(actualValue) + abs(modelValue.getValue())) / 2);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user