From f78c42c43312ea8f428d537df14ac679c7934909 Mon Sep 17 00:00:00 2001 From: Anirban Mukherjee Date: Sat, 9 Oct 2021 01:13:57 +0530 Subject: [PATCH] Update README.md --- 7-TimeSeries/3-SVR/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/7-TimeSeries/3-SVR/README.md b/7-TimeSeries/3-SVR/README.md index 0c258bbf..f73fb3c9 100644 --- a/7-TimeSeries/3-SVR/README.md +++ b/7-TimeSeries/3-SVR/README.md @@ -359,6 +359,7 @@ MAPE: 2.0572089029888656 % - Try to tweak the hyperparameters (gamma, C, epsilon) while creating the model and evaluate on the data to see which set of hyperparameters give the best results on the testing data. To know more about these hyperparameters, you can refer to the document [here](https://scikit-learn.org/stable/modules/svm.html#parameters-of-the-rbf-kernel). - Try to use different kernel functions for the model and analyze their performances on the dataset. A helpful document can be found [here](https://scikit-learn.org/stable/modules/svm.html#kernel-functions). +- Try using different values for `timesteps` for the model to look back to make prediction. ## Assignment