Skip to content

Commit

Permalink
update selective forecasting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ourownstory committed Apr 28, 2023
1 parent 209129e commit e756184
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ def test_selective_forecasting():
y = np.random.randint(0, 1000, size=(len(date_range),))
df = pd.DataFrame({"ds": date_range, "y": y})
m = NeuralProphet(
n_forecasts=24,
n_forecasts=1,
n_lags=14,
epochs=1,
batch_size=BATCH_SIZE,
Expand All @@ -1585,7 +1585,7 @@ def test_selective_forecasting():
df = pd.DataFrame({"ds": date_range, "y": y})
m = NeuralProphet(
n_forecasts=14,
n_lags=14,
n_lags=0,
epochs=1,
batch_size=BATCH_SIZE,
learning_rate=LR,
Expand All @@ -1600,8 +1600,8 @@ def test_selective_forecasting():
y = np.random.randint(0, 1000, size=(len(date_range),))
df = pd.DataFrame({"ds": date_range, "y": y})
m = NeuralProphet(
n_forecasts=7,
n_lags=14,
n_forecasts=1,
n_lags=0,
epochs=1,
batch_size=BATCH_SIZE,
learning_rate=LR,
Expand Down

0 comments on commit e756184

Please sign in to comment.