fix prediction length

This commit is contained in:
Dr. Kashif Rasul
2020-02-17 14:39:04 +01:00
parent 923ba8978a
commit d54197cd6a
+1 -1
View File
@@ -249,7 +249,7 @@ class SampleForecast(Forecast):
"""
Time length of the forecast.
"""
return self.samples.shape[-1]
return self.samples.shape[1]
@property
def mean(self):