KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
cv.ts
โ 60
Open GitHub โ
Cross-validate time series forecasts
Download README (.md)
Explore Similar Repositories
osprey
:
๐ฆ Hyperparameter optimization for machine learning pipelines ๐ฆ
Pytorch-Utils
:
Useful functions to work with PyTorch. At the moment, there is a function to work with cross validation and kernels visualization.
glmnetUtils
:
Utilities for glmnet
Nested-Cross-Validation
:
Nested cross-validation for unbiased predictions. Can be used with Scikit-Learn, XGBoost, Keras and LightGBM, or any other estimator that implements the scikit-learn interface.
Types-Of-Cross-Validation
:
No description available.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
cv.ts
?
Download (.md)
[](https://travis-ci.org/zachmayer/cv.ts) Time Series Cross-Valiation === This is a package to automate the cross-validation of time-series models, particularly those created by the forecast and caret packages. Install as follows: ```{R} devtools::install_github('zachmayer/cv.ts') ``` You can then cross-validate different time series models as follows: ```{R} data("AirPassengers") x <- AirPassengers myControl <- tseriesControl(maxHorizon=4) theta_model <- cv.ts(x, thetaForecast, tsControl=myControl) arima_model <- cv.ts(x, auto.arimaForecast, tsControl=myControl) ets_model <- cv.ts(x, etsForecast, tsControl=myControl) theta_model$results arima_model$results ets_model$results ``` This package has been off my radar screen for a long time, and I need to write lots of documentation and tests. Please add issues to the issue tracker, and I welcome any pull requests. https://github.com/zachmayer/cv.ts/issues