From 7e1bb8495c2fdbe79605de78ac41caa376560370 Mon Sep 17 00:00:00 2001 From: Anirban Mukherjee Date: Wed, 6 Oct 2021 11:33:02 +0530 Subject: [PATCH] Update README.md --- 7-TimeSeries/3-SVR/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/7-TimeSeries/3-SVR/README.md b/7-TimeSeries/3-SVR/README.md index b2f1411c..f79c5872 100644 --- a/7-TimeSeries/3-SVR/README.md +++ b/7-TimeSeries/3-SVR/README.md @@ -242,6 +242,10 @@ test_timestamps = energy[test_start_dt:].index[timesteps-1:] print(len(train_timestamps), len(test_timestamps)) ``` +```output +1412 44 +``` + Plot the predictions for training data: ```python