Added new regression model Support Vector Regressor in models.py
Reason
Support Vector Regressor does not depend upon the dimensionality of the input space and manages to fit the best line within a threshold of values. SVR provides the flexibility to adjust the model's robustness by tuning hyperparameters and gives good prediction accuracy.
This PR fixes for issue #6
Changes made
Added new regression model Support Vector Regressor in models.py
Reason
Support Vector Regressor does not depend upon the dimensionality of the input space and manages to fit the best line within a threshold of values. SVR provides the flexibility to adjust the model's robustness by tuning hyperparameters and gives good prediction accuracy.