@@ -112,22 +112,21 @@ Here's a breakdown of the forecasting models currently implemented in Darts. We
112
112
on bringing more models and features.
113
113
114
114
Model | Univariate | Multivariate | Probabilistic | Multiple-series training | Past-observed covariates support | Future-known covariates support
115
- --- | --- | --- | --- | --- | --- | --- |
116
- ` ARIMA ` | x | | x | | | |
117
- ` VARIMA ` | x | x | | | | |
118
- ` AutoARIMA ` | x | | | | | |
119
- ` ExponentialSmoothing ` | x | | x | | | |
120
- ` Theta ` and ` FourTheta ` | x | | | | | |
121
- ` Prophet ` | x | | | | | |
122
- ` FFT ` (Fast Fourier Transform) | x | | | | | |
123
- Regression Models (incl ` RandomForest ` and ` LinearRegressionModel ` ) | x | | | | | |
124
- ` RNNModel ` (incl. LSTM and GRU); equivalent to DeepAR in its probabilistic version | x | x | x | x | x | x |
125
- ` BlockRNNModel ` (incl. LSTM and GRU) | x | x | | x | x | (x) |
126
- ` NBEATSModel ` | x | x | | x | x | (x) |
127
- ` TCNModel ` | x | x | x | x | x | (x) |
128
- ` TransformerModel ` | x | x | | x | x | (x) |
129
- Naive Baselines | x | | | | | |
130
-
115
+ --- | --- | --- | --- | --- | --- | ---
116
+ ` ARIMA ` | x | | x | | |
117
+ ` VARIMA ` | x | x | | | |
118
+ ` AutoARIMA ` | x | | | | |
119
+ ` ExponentialSmoothing ` | x | | x | | |
120
+ ` Theta ` and ` FourTheta ` | x | | | | |
121
+ ` Prophet ` | x | | | | |
122
+ ` FFT ` (Fast Fourier Transform) | x | | | | |
123
+ Regression Models (incl ` RandomForest ` and ` LinearRegressionModel ` ) | x | | | | |
124
+ ` RNNModel ` (incl. LSTM and GRU); equivalent to DeepAR in its probabilistic version | x | x | x | x | x | x
125
+ ` BlockRNNModel ` (incl. LSTM and GRU) | x | x | | x | x | ( x )
126
+ ` NBEATSModel ` | x | x | | x | x | ( x )
127
+ ` TCNModel ` | x | x | x | x | x | ( x )
128
+ ` TransformerModel ` | x | x | | x | x | ( x )
129
+ Naive Baselines | x | | | | |
131
130
132
131
## Contribute
133
132
@@ -145,12 +144,12 @@ If what you want to tell us is not a suitable github issue, feel free to send us
145
144
146
145
### Preconditions
147
146
148
- Some of the models depend on ` fbprophet ` and ` torch ` , which have non-Python dependencies.
147
+ Some of the models depend on ` prophet ` and ` torch ` , which have non-Python dependencies.
149
148
A Conda environment is thus recommended because it will handle all of those in one go.
150
149
151
150
The following steps assume running inside a conda environment.
152
151
If that's not possible, first follow the official instructions to install
153
- [ fbprophet ] ( https://facebook.github.io/prophet/docs/installation.html#python )
152
+ [ prophet ] ( https://facebook.github.io/prophet/docs/installation.html#python )
154
153
and [ torch] ( https://pytorch.org/get-started/locally/ ) , then skip to
155
154
[ Install darts] ( #install-darts )
156
155
@@ -166,11 +165,11 @@ Don't forget to activate your virtual environment
166
165
167
166
#### MAC
168
167
169
- conda install -c conda-forge -c pytorch pip fbprophet pytorch
168
+ conda install -c conda-forge -c pytorch pip prophet pytorch
170
169
171
170
#### Linux and Windows
172
171
173
- conda install -c conda-forge -c pytorch pip fbprophet pytorch cpuonly
172
+ conda install -c conda-forge -c pytorch pip prophet pytorch cpuonly
174
173
175
174
### Install darts
176
175
@@ -181,7 +180,7 @@ we also maintain the `u8darts` package, which provides the following alternate l
181
180
182
181
* Install core only (without neural networks, Prophet or AutoARIMA): ` pip install u8darts `
183
182
* Install core + neural networks (PyTorch): ` pip install 'u8darts[torch]' `
184
- * Install core + Facebook Prophet: ` pip install 'u8darts[fbprophet ]' `
183
+ * Install core + Facebook Prophet: ` pip install 'u8darts[prophet ]' `
185
184
* Install core + AutoARIMA: ` pip install 'u8darts[pmdarima]' `
186
185
187
186
### Running the examples only, without installing:
@@ -213,7 +212,7 @@ alternatively you can run
213
212
./gradlew lint # to run linter
214
213
```
215
214
216
- To run the tests for specific flavours of the library, replace ` _all ` with ` _core ` , ` _fbprophet ` , ` _pmdarima ` or ` _torch ` .
215
+ To run the tests for specific flavours of the library, replace ` _all ` with ` _core ` , ` _prophet ` , ` _pmdarima ` or ` _torch ` .
217
216
218
217
### Documentation
219
218
0 commit comments