GitXplorerGitXplorer
r

M4metalearning

public
116 stars
49 forks
10 issues

Commits

List of commits on branch master.
Verified
61ddc7101680e9df7219c359587d0b509d2b50d6

Merge pull request #10 from mitchelloharawild/master

rrobjhyndman committed 6 years ago
Verified
722116fa2c0e30f6e75840e59ab7655f1dcfc31e

Merge pull request #12 from samuel-bohman/master

rrobjhyndman committed 6 years ago
Verified
061d9e6c7fef8886d61ceaa623683473fe45ba56

Merge pull request #1 from samuel-bohman/samuel-bohman-patch-1

ssamuel-bohman committed 6 years ago
Verified
95518805aae49d5d18e89014bbddbedc7d8a428d

Update README.md

ssamuel-bohman committed 6 years ago
Unverified
78f87e9bcd6cccefc473f2235d155669a97ae4aa

Fixed missing end-quote in readme

mmitchelloharawild committed 6 years ago
Verified
9e8658ce6accdce1324bfe4ec2f275b550ff57c7

Merge pull request #9 from mitchelloharawild/parallel_fc

rrobjhyndman committed 6 years ago

README

The README file for this repository.

This page contains the explanation of our forecast method for the M4 competition, authored by Pablo Montero-Manso, Thiyanga Talagala, Rob J Hyndman and George Athanasopoulos.

As part of our submission, we are producing the R package M4metalearning, see installation instructions below. This package is intended to facilitate reproducing the results of our submission, but can also be used on its own to apply our approach to other datasets, either using the pretrained model submitted to the M4 competition or by training new models.

Additionally, the authors have produced another R package M4comp2018, which facilitates the users the access to the M4 competition dataset. The M4comp2018 package can be found here

The description is divided into three sections, the first t

  1. Methodology
  2. Reproducing the results
  3. Usage example of the package

M4metalearning

The goal of the M4Metalearning package is to provide forecasting metalearning tools based on our submission to the M4 competition.

Installation

You can install M4metalearning from github with:

# install.packages("devtools")
devtools::install_github("robjhyndman/M4metalearning")

Note

M4metalearning is using, for the time being, a slight modification of the tsfeatures package. Please install it from:

# install.packages("devtools")
devtools::install_github("pmontman/tsfeatures")

Also, a custom version of the xgboost package is required. It is installed automatically when calling the training functions that use it, since it does not break compatibility. It just supports customized multiclass objective functions. You may install it manually from:

# install.packages("devtools")
devtools::install_github("pmontman/customxgboost")

Usage

For an example of the usage of the package see this page