https://github.com/unit8co/darts

sort by:
Revision Author Date Message Commit Date
fcd4f6f WIP added NeuralProhet as a drop-in for Prophet 19 June 2022, 14:19:50 UTC
ebab32c Conditional import of GaussianLikelihood in torch tests 18 June 2022, 10:20:42 UTC
c8169ec resolve torchmetrics import issue (#1015) 18 June 2022, 10:04:51 UTC
14d671a Add torchmetric dependency (#1011) 16 June 2022, 15:40:19 UTC
2c43352 Feat/torchmetrics (#996) * added droput and batch_norm similiar to nhits' implementation * activation param for nhits * fix * support any pytorch activation function. NHiTs AvgPool1d support * PR * Update CHANGELOG.md * fixed typo * pytorch lightning did not like saving nn.modules * first pass * metrics now works with likelihood * rename var * made metrics a parameter. Added Tests * torchmetrics is already a dependency * changelog * model now accepts torchmetrics and torchCollections * torchmetric example in early stop * handle no metrics * made _calculate_metrics private * Ray tune example * Ray tune example * changelog * Update darts/models/forecasting/pl_forecasting_module.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/pl_forecasting_module.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * added torch_metrics to doc strings in torch based models * added torch_metrics to doc strings in torch based models * Update darts/models/forecasting/pl_forecasting_module.py * black formatting Co-authored-by: Greg DeVos <gregory.devos@ngc.com> Co-authored-by: Julien Herzen <julien@unit8.co> Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> 15 June 2022, 20:42:15 UTC
abf12da fixed bug in historical forecasts not training model for first time if retrain is False (#1005) 13 June 2022, 19:13:17 UTC
2292b82 fixed verbose overwriting trainer parameters (#999) * fixed verbose overwriting trainer parameters * black and isort * reverted `verbose` deprecation Co-authored-by: Julien Herzen <julien@unit8.co> 12 June 2022, 15:57:43 UTC
07c6a4d HNiTS rename to match model naming convection (#1000) * renamed nhits to match naming convention of other models * renamed nhits to match naming convention of other models * renamed nhits to match naming convention of other models 11 June 2022, 13:04:33 UTC
c8a82d7 Fix/documentation fix (#986) * Fix documentation issue * Fix documentation issue * Fix documentation issue * Black formatting fix * Black formatting fix Co-authored-by: Julien Herzen <julien@unit8.co> 08 June 2022, 07:16:09 UTC
be70f28 Feat/Early stop in performance doc (#984) * reformatted tables for compatability * early stop example * Update docs/userguide/torch_forecasting_models.md Co-authored-by: Dustin Brunner <92083143+brunnedu@users.noreply.github.com> * Update docs/userguide/torch_forecasting_models.md Co-authored-by: Julien Herzen <j.herzen@gmail.com> * PR comments Co-authored-by: Julien Herzen <julien@unit8.co> Co-authored-by: Dustin Brunner <92083143+brunnedu@users.noreply.github.com> Co-authored-by: Julien Herzen <j.herzen@gmail.com> 08 June 2022, 07:15:29 UTC
6c90980 Feat/static covs (#966) * added methods ``from_longitudinal_dataframe` and `add_static_covariates` * dataset adaption for static covs * extended datasets for static covariates support and unified variable names Please enter the commit message for your changes. Lines starting * adapted PLXCovariatesModules with static covariates * adapted TFTModel for static covariate support * added temporary fix for static covariates with scalers * unittests for from_longitudinal_dataframe() and set_static_covariates * updated dataset tests * fixed all downstream issues from new static covariates in datasets * added check for equal static covariates between fit and predict * added tests for passing static covariates in TimeSeries methods * added static covariate support for stacking TimeSeries * transpose static covariates * added method `static_covariates_values()` * updated docs * static covariate support for concatenation * static covariate support for concatenation * static covariates are now passed to the torch models * non-numerical dtype support for static covariates * added slicing support for static covariates * multicomponent static covariate support for TFT * added arithmetic static covariate support * updated all timeseries methods/operations with static cov transfer * applied suggestion from PR review part 1 * apply suggestions from code review part 2 Co-authored-by: Julien Herzen <julien@unit8.co> * fix black issue from PR suggestion Co-authored-by: Julien Herzen <julien@unit8.co> 05 June 2022, 13:23:39 UTC
cad8055 fixed change log (#981) * fixed change log * remove space * Triggering PR workflow again Co-authored-by: Greg DeVos <gregory.devos@ngc.com> 02 June 2022, 14:58:00 UTC
d6a898f Update paper bibtex (#978) 27 May 2022, 08:07:07 UTC
f86da6c Change function name in tests (#977) 27 May 2022, 08:05:22 UTC
9e1b565 Enforce argument names when calling `raise_if` and `raise_if_not` (#958) * Enforce argument names when calling `raise_if` and `raise_if_not` * remove argument name enforcement * revert 1 * revert 2 * revert 3 * revert 3 * fix revert 5 revert 5 revert 6 fix Co-authored-by: Julien Herzen <julien@unit8.co> 27 May 2022, 06:55:38 UTC
bf634f7 Feat/New Datasets (ETT and Electricity) (#960) * adding ETT-small dataset from Informer paper * added framework for handling zip datasets. Added Electricity dataset. * zip tests * changelog * fixed tests. created test.zip to reduce runtime and bandwidth * added debug info * fixed test. Linux is picker with file extensions * PR comments. Added ETT datasets to project. fixed the docstrings * PR comments. updated zip download and extraction to use python's tempfile library * docstring update * docstring updates * consistent line endings to match hash on windows and linux * changed pre_process_fn to pre_process_zipped_csv_fn. added error message if pre_process_zipped_csv_fn is used on csv files * fix * Update darts/datasets/__init__.py Co-authored-by: Greg DeVos <gregory.devos@ngc.com> Co-authored-by: Julien Herzen <julien@unit8.co> Co-authored-by: Julien Herzen <j.herzen@gmail.com> 27 May 2022, 06:52:02 UTC
0d51c2c Feat/glu variants (#968) * adding GLU variants to transformer model * added all glu variants * refactoring * update docstrings * activation test * typo * reduced num of epochs for tests * PR comments * PR comments * added glu variants to TFT. cleaned up comments * glu variants tests Co-authored-by: Greg DeVos <gregory.devos@ngc.com> 27 May 2022, 06:51:33 UTC
155c653 Finish TODOs in NHiTs and NBEATs (#955) * added droput and batch_norm similiar to nhits' implementation * activation param for nhits * fix * support any pytorch activation function. NHiTs AvgPool1d support * PR * Update CHANGELOG.md * fixed typo * pytorch lightning did not like saving nn.modules * raise_if_not instead of assert Co-authored-by: Julien Herzen <j.herzen@gmail.com> * raise_if_not instead of assert Co-authored-by: Julien Herzen <j.herzen@gmail.com> * typo Co-authored-by: Julien Herzen <j.herzen@gmail.com> * activation test * linting Co-authored-by: Greg DeVos <gregory.devos@ngc.com> Co-authored-by: Julien Herzen <j.herzen@gmail.com> Co-authored-by: Julien Herzen <julien@unit8.co> 18 May 2022, 19:41:05 UTC
adb66fd add fit_called checks in global models (#944) * add fit_called checks in global models * adapt TFT tests 18 May 2022, 10:12:48 UTC
699bf17 Fix/head tail (#942) * fix head & tail * added unit tests 18 May 2022, 10:12:19 UTC
8d9bd19 Fix array shape (#963) 18 May 2022, 10:09:39 UTC
5213854 add stats plot functions to tests (#945) 05 May 2022, 13:53:25 UTC
611e411 Correct the docstring of the TransformerModel (#931) * Correct the docstring of the TransformerModel * additional capitalization and punctuation fixes Co-authored-by: Julien Herzen <julien@unit8.co> 04 May 2022, 09:12:31 UTC
72ea9e0 Feat/separate doc workflow (#917) * fix wrong image * add a new doc workflow * remove release dependency in doc workflow 04 May 2022, 09:12:08 UTC
5d6cd10 Import ABC from collections.abc for Python 3.10 compatibility. (#874) Co-authored-by: Julien Herzen <julien@unit8.co> Co-authored-by: Tomas Van Pottelbergh <85937396+tomasvanpottelbergh@users.noreply.github.com> 04 May 2022, 09:11:37 UTC
fc09e50 replaced new LinearLR scheduler (only available with torch >= 1.10.0) with StepLR (#928) 03 May 2022, 10:02:18 UTC
0d1a208 Recognize DARTS_CONFIGURE_MATPLOTLIB=0 (#924) * recognize DARTS_CONFIGURE_MATPLOTLIB=0 * By default, darts still applies matplotlib configurations * If the environment variable DARTS_CONFIGURE_MATPLOTLIB=0 is set, then darts.u8plots_mplstyle is still defined but not applied * add entry to change log 23 April 2022, 07:20:36 UTC
e3f3309 Release 0.19.0 13 April 2022, 19:15:26 UTC
65b85f5 change github-tag-action version 13 April 2022, 19:12:33 UTC
a9be91c attempt at fixing unsafe repo issue 13 April 2022, 19:11:01 UTC
045901e Release 0.19.0 (#912) * bump u8darts * update readme * update CHANGELOG 13 April 2022, 15:41:36 UTC
7a6355c Fix/linear quantile interpolation (#899) * quantile sampling now linearliy interpolates between fitted quantiles * Changed sampling behaviour of regression models. Now models correctly produce sample paths. Quantile sampling changed, now uses linear interpolations between values * made sample method private * moved code back from _prepare_prediction * added type hinting * fixed docstrings, removed redundant code Co-authored-by: Julien Herzen <julien@unit8.co> 13 April 2022, 14:58:13 UTC
60fcb3b Feat/improve user guide (#905) * started TimeSeries doc * progress on time series doc * update time series guide * updated timeseries user guide * small modifs * add forecasting overview * change a bit torch user guide * improvements to user guide * add FAQ * added TCN quantile image * some improvements * some improvements * link user guide from readme 13 April 2022, 11:14:38 UTC
99b649e Feat/nhits (#898) * a first version of N-HiTS * improved comments * added unit tests * Update darts/models/forecasting/nhits.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/nhits.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/nhits.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/nhits.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * improved unit tests from PR suggestions * fix linting * Update darts/models/forecasting/nhits.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> 13 April 2022, 11:12:37 UTC
84801df Feat/statsforecasts (#893) * added AutoARIMASF * added Croston model * add statsforecasts to requirements * add models to init file * some updates to the models * test models * small improvements * add the AutoARIMASF file * rename AutoARIMASF to StatsForecastAutoARIMA * add statsforecasts with >= requirement * add sba and tsb flavours of Croston * adap unit test * catch an issue with statsforecast sba * correct typo * correct bug 2 sigma -> 1 sigma * rephrase error message 13 April 2022, 11:10:57 UTC
2fd9d44 update readme to include Gitter (#908) 12 April 2022, 19:17:24 UTC
9a182ce Add Gitter badge (#901) 12 April 2022, 19:08:38 UTC
76fcf53 added transfer learning example notebook (#885) * added transfer learning example notebook * small update to transfer learning notebook * list the notebook in examples list * add example to list of examples * revert change to userguide.rst * remove a few imports * fixed typos * fix typo 08 April 2022, 15:15:43 UTC
efa955a Fix/ptl1.6.0 (#888) * fix epochs trained count * save PTL module and trainer using PTL checkpointing * dynamically compute right number of epochs trained * test checkpoint file existence * restore model saving in tests 05 April 2022, 11:35:24 UTC
fb5a59e Update black to 22.3.0 (#886) 05 April 2022, 09:36:09 UTC
a3066fa Fix/link gpu guide in doc (#873) * link GPU/TPU usage guide * typo 25 March 2022, 06:36:20 UTC
d5dd296 Release 0.18.0 22 March 2022, 16:24:56 UTC
1be416f Release 0.18.0 (#867) * bump u8darts * update contribution guidelines * update changelog * separate install page * update readme 22 March 2022, 15:25:26 UTC
b4bd2b4 Fix/check torch import (#866) * checks if torch is available before running tests * now all imports happen after torch check * now all imports happen after torch check 21 March 2022, 18:53:18 UTC
3e4394d Feat/improve seasonal decompose (#862) * added STL decompose method, added tests * fixed documentation * updated tests and documentation * updated tests * now raises an error instad of a warning if method is incompatible with seasonality mode * typo Co-authored-by: Julien Herzen <julien@unit8.co> 21 March 2022, 16:16:52 UTC
c43b17b checks if torch is available before running tests (#864) 21 March 2022, 15:43:27 UTC
490863f Fix/quantile-multiple-ts-prediction (#853) * fixed issue with probabilistic RegressionModels not working on multiple series * Apply suggestions from code review Co-authored-by: Julien Herzen <julien@unit8.co> Co-authored-by: Julien Herzen <julien@unit8.co> 21 March 2022, 13:58:50 UTC
eda8f94 Feat/more losses (#845) * added some loss functions * remove M3 loss which seems bogus * add unit tests for losses * correct unit test * correct unit test * correct unit test * added NINF case * add optional denominator computation in MAPE loss * better MAPE/MAE split * simplify MAPE loss * simplify loss tests * remove a print statement * Update darts/utils/losses.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> 19 March 2022, 20:40:44 UTC
a7abedf fixed wrong future covariates slicing with RangeIndex (#858) 19 March 2022, 14:33:15 UTC
0233756 Feat/probabilistic-lgbm-linreg (#831) * moved from forked branch * added likelihoods to linear model, updated tests, refactored lgbm quantile regression * fixed docstring * fixed test case * Apply suggestions from code review Co-authored-by: Julien Herzen <julien@unit8.co> * applied suggestions from code review, adjusted test and moved _check_quantiles to utils/utils.py * removed unnecessary enumerate * inserted else statement for clarity Co-authored-by: Julien Herzen <julien@unit8.co> 11 March 2022, 06:57:58 UTC
9cb3fd7 Fix issues with tbats (#838) 10 March 2022, 10:27:29 UTC
16bece0 Feat/tbats (#816) * Base version of TBATS * Add both BATS and TBATS * import both bats and tbats * fix an issue * added unit tests for bats and tbats probabilistic * add accuracy unit tests * Remove useless lines * Improve doc * Small fix * Add BATS/TBATS to pmdarima flavour * better frequency support * Update darts/models/forecasting/tbats.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/tbats.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * some PR comments * address PR comments Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> 09 March 2022, 16:38:18 UTC
d48f265 Feat/backtest sliding window (#775) * Drafted implementation of sliding window * Add some unit tests for sliding window * Address comments and complete docstring. * Format logging statement * Formatting * Reformetted + min train length check * Reformat min train length method Co-authored-by: Amadej KOCBEK <amadej.kocbek@firmenich.com> Co-authored-by: Julien Herzen <julien@unit8.co> 09 March 2022, 08:23:02 UTC
ae47aba Feat/stochastic inputs (#833) * Use stochastic samples for training/inference of torch models * Fix typo * add a unit test 08 March 2022, 12:58:23 UTC
cb80cf3 return metric score along with untrained best models & params (#822) * return metric score along with untrained best models & params * update test and metric type * fmt * gridsearch score unittest Co-authored-by: Julien Herzen <julien@unit8.co> 01 March 2022, 15:38:52 UTC
4920de0 Fix/encoders with fit from ds (#829) * Check encoders are not None before using * Add unit test to capture the issue 01 March 2022, 12:31:56 UTC
2c0453d GPU and TPU usage guide (#826) * GPU and TPU usage guide * GPU and TPU usage guide Co-authored-by: Julien Herzen <julien@unit8.co> 01 March 2022, 10:02:57 UTC
7ca7801 added val loss to progess bar and updated docs (#825) 28 February 2022, 19:11:24 UTC
0d267e0 removed checkpoint from prediction (#821) 27 February 2022, 21:22:41 UTC
cbe49bf fix: bad file descriptor (#769) * fix: bad file descriptor When using Prophet under a multi-threading environment such as Dask, the error `[Errno 9] Bad File Descriptor` could happen. I can consistently reproduce this error while running forecasts with Dask. This implementation seems to fix the issue. I do not fully understand why this happens, because only when running Dask for a long time would this happen. My implementation is semantically equivalent to the original, but I guess avoiding to open `devnull` too many times can help. Context: I am running forecast using Prophet for about 500_000 time series, all in 1 big Dask data frames (split into 91 smaller Pandas data frames). If I don't use Dask, and instead use *joblib* to parallelize the forecasting, then this error does not happen. I think because joblib creates a separate thread for every worker, whereas Dask can have multiple threads for a worker. * revert changes Update logging.py * make log suppression optional * add unit test * provide better data for test, update model dep * restore original intention of model construction * test case to make sure Prophet model is loaded by default * reformat to black style * sort imports * underscore private variables Co-authored-by: Julien Herzen <julien@unit8.co> 25 February 2022, 13:21:32 UTC
c2123c9 Feat/isort pyupgrade linting (#797) * Add isort and pyupgrade pre-commit hoos * Update black to stable version * Change linting in Gradle and CI * Fix gradle task * Improve gradle task and remove pyupgrade * Add commits to .git-blame-ignore-revs * Change documentation to include linting * Fix gradle linting task * Add newlines 17 February 2022, 16:38:17 UTC
8158d3e Fix last black and isort issues (#798) 17 February 2022, 13:08:16 UTC
bbabe54 Release 0.17.1 17 February 2022, 12:54:59 UTC
a281861 Release 0.17.1 (#807) * bump u8darts * Update changelog 17 February 2022, 11:04:09 UTC
ef72f4b Fix/ptl fixes (#806) * fixed lr schedulers and added tests * added check for invalid model creation params * additional lr scheduler fix * added deprecated to docs * move torch import in tests for flavors * fix wrong parameter docs * updated torch device docs Co-authored-by: Julien Herzen <julien@unit8.co> 17 February 2022, 10:55:49 UTC
6da5957 Fix wrong seasonality basis generator for NBEATS (#804) Co-authored-by: Julien Herzen <julien@unit8.co> 17 February 2022, 09:44:50 UTC
73a1645 Added KalmanForecaster to readme (#805) 17 February 2022, 08:23:01 UTC
cd361e3 Relaxing pandas requirements to version 1.0.5 (#800) * Fixes for pandas 1.0.5 * Requirements pandas>=1.0.5 16 February 2022, 10:48:02 UTC
00cd099 Release 0.17.0 15 February 2022, 17:21:00 UTC
4db18e2 Fix typo in changelog 15 February 2022, 15:23:01 UTC
a904e70 Release 0.17.0 (#796) * Bump u8darts * Update changelog for 0.17.0 * Added backward compatibility warnings * Typo 15 February 2022, 15:17:53 UTC
80ae7b9 Add a section about max_samples_per_ts (#795) 15 February 2022, 14:13:34 UTC
51c480a fixed pytorch lightning import for flavor tests (#794) 15 February 2022, 14:13:12 UTC
dda4d9c Feat/pytorch lightning (#702) * first draft proposal for pytorch lightning integration * further cleanup * removed unnecessary file * fix for multiple-TS * moved prediction timeseries generation back to TorchForecastingModel * support for custom trainer in fit() * removed unused methods from TorchForecastingModel * checkpoint loading now correctly resumes training * rewrote TorchForecastingModel * rewrote TFTModel * rewrote rnn models * rewrote nbeats models * rewrote tcn model * rewrote transformer model * removed unused import * resolve failing tests part 1 * resolve failing tests part 2 * adapted the way how model parameters are saved * moved TFTModel predict method into TorchForecastingModel subclass * further simplification of model calls * integrated ProbabilisticTorchForecastingModel into PLForecastingModule * integrated _produce_predict_output into PLForecastingModule * reintegrated original random state handling * removed unused pl random state wrapper function * use OrderedDict for savety in model parameter extraction * made TFM and PLFM paramater extraction generic * added types for variables in TFM init * made predictions deterministic for same fit predict process for non-loaded models * fix flake8 issues * fix flake8 issues part 2 * added pytorch-lightning to torch requirements * fixed loading models with wrong precision * fixed is_probabilistic() * fixed failing tests for epoch count tracker * removed input/output_chunk_length from TorchForecastingModel __init__ * unit tests save models to temp dir * added documentation for ModelMeta * apply suggestions from PR review part 1 * deprecated `torch_device_str` * updated optimizer docs * updated retrain warning * made PLMixedCovariatesModule more generic * added docs * added PTL trainer unit tests * update model docs * fixed broken url in TFM and covariates userguide * removed input/output chunk length from PL modules * relaxed pytorch-lightning requirement * isort * isort part 2 15 February 2022, 13:43:16 UTC
da84f07 Fix/int index warnings (#777) * Started removing Int64Index * some progress on introducing RangeIndex everywhere * Handle creation from a DF with integer column * adapt TimeSeries to support RangeIndex only * Keep RangeIndex only in the whole codebase * Update darts/timeseries.py Co-authored-by: Dustin Brunner <92083143+brunnedu@users.noreply.github.com> * Removed commented lines Co-authored-by: Dustin Brunner <92083143+brunnedu@users.noreply.github.com> 15 February 2022, 12:45:50 UTC
d8e056e Fix/restore datasets hashes (#792) * Restore datasets hashes * Restore newline in monthly-milk.csv * Restore newlines in monthly-milk-incomplete.csv * Restore newlines in monthly-milk.csv Co-authored-by: Julien Herzen <julien@unit8.co> 15 February 2022, 11:11:34 UTC
46c6249 Restore datasets hashes (#791) 15 February 2022, 10:08:56 UTC
38cc671 Fix/isort and pyupgrade issues (#765) * changes from isort etc * fixing import errors from isort * Clean up dev.txt * Clean up release.txt Co-authored-by: Greg DeVos <gregory.devos@ngc.com> Co-authored-by: Tomas Van Pottelbergh <85937396+tomasvanpottelbergh@users.noreply.github.com> Co-authored-by: Julien Herzen <julien@unit8.co> 13 February 2022, 17:56:05 UTC
12059b0 formatting (#784) 11 February 2022, 15:20:11 UTC
b51b3af Fix/simple statistics (#773) * Removed dependencies on old TimeSeries.mean() method * Expanded functionality of mean, median, sum, max, min to work over all axes. Removed dependency on pandas from TimeSeries.quantile_timeseries() method. * Added unit tests for simple statistics methods * Added documentation for simple statistics methods 10 February 2022, 16:01:08 UTC
508d60a update video link to pydata 2021 presentation (#771) 08 February 2022, 10:08:47 UTC
021a9a9 Feat/kalman forecaster (#743) * avoid copying dataframe in regression models * improve formating in KF file * make Kalman filter work on missing values * generate forecasts with correct time axis name * improve docstring of Kalman filter * added Kalman Forecaster * added KalmanForecaster to unit tests * custom kalman step function for missing values * Fix the nfoursid version * Update test * Added a test case * Rely on new nfoursid step() function * Update version of nfoursid * Remove unused import * Removed unnecessary lines 07 February 2022, 09:12:41 UTC
0e5b5ad Feat/output chunk length regression model (#761) * fix multicollinearity in regression ensemble model tests causing exploding coefficients * reset seed to intial value * add output_chunk_length parameter to regression model * add output_chunk_length to fit method of regressionmodel * add check if model support multi output regression natively * remove _shift_matrices test * update the LightGBMModel * update linear regression model * update random forest regression model * update LightGBMModel docstring * use dict for lags in regressionmodel and adjust all models and tests accordingly * reformat regression_ensemble_model using pre-commit * reformat test_regression_models with pre-commit * shorten comment line length * remove unused import to pass flake8 * reformat with black * reformat with black * update docstring of _create_lagged_data * reformat using black * improve error message when unable to build any samples to fit and when input_dim doesn't match * return self at the end of fit() in regressionmodel * remove numpydoc type hints and add n_jobs_multioutput_wrapper parameter to fit() * add comments 05 February 2022, 17:55:14 UTC
c2d91e0 Fix/added unique ids to model_name (#760) * added unique ids to model_name * removed pid from the folder name Co-authored-by: Greg DeVos <gregory.devos@ngc.com> Co-authored-by: Julien Herzen <julien.herzen@unit8.co> 04 February 2022, 09:22:23 UTC
ec6ccf8 Feat/return estimator (#741) * Return estimator by forecasting models * Return KF in fit() * Added a unit test * Merge unit test with an existing one * Fix typo 01 February 2022, 11:54:16 UTC
50c7391 add favicon (#763) 01 February 2022, 10:48:59 UTC
ba4e81c Add workaround for broken pip-tools (#762) 31 January 2022, 18:01:29 UTC
151ba96 allow for ETS with seasonal=None (#729) * allow for ETS with seasonal=None * Added SeasonalityModel for ETS seasonal arg, clarified docs * formatted with black * Update darts/models/forecasting/exponential_smoothing.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/exponential_smoothing.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/exponential_smoothing.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * Update darts/models/forecasting/exponential_smoothing.py Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> * oxford comma * Update darts/models/forecasting/exponential_smoothing.py * Apply black reformatting * fix too long lines Co-authored-by: Dennis Bader <dennis.bader@gmx.ch> 24 January 2022, 19:12:45 UTC
841a42e Release 0.16.1 24 January 2022, 16:05:06 UTC
0990a6e Update changelog and u8darts version (#753) 24 January 2022, 15:13:07 UTC
bed6e52 Remove broken type annotation (#752) * Remove broken type annotation * Solve issues with calling pandas mean() 24 January 2022, 15:01:58 UTC
d94428a Feat/set up flake8 (#749) * Modify flake8 config for Black compatibility * Add flake8 pre-commit * Pin flake8 requirement * Add flake8 Github action * Modify test command to include linting * Ignore flake8 issues fix in git blame * Mention flake8 pre-commit linting 21 January 2022, 15:27:36 UTC
96125f8 Fix/flake8 issues (#748) * Fix W605 * Fix W291 * Fix F401 * Fix F541 * Fix F841 (partially) * Fix E713 * Fix E731 * Fix E714 * Fix F841 * Fix E501 * Fix E501 21 January 2022, 14:23:44 UTC
074be2a fix/TFTModel_flask (#745) 18 January 2022, 17:41:25 UTC
334b0d8 Fix/revert numpydoc docstrings (#744) * fix/update statistics docstrings * fix/update timeseries generation docstrings 18 January 2022, 15:11:00 UTC
ddc84a2 fixed non contiguous error when using lstm_layers > 1 on gpu (#740) 15 January 2022, 19:13:25 UTC
adde52a fixed timedelta issue in longest_contiguous_slice (#725) * fixed timedelta issue in longest_contiguous_slice * made slice size calculation more comprehensible 14 January 2022, 09:27:47 UTC
3882a0c Release 0.16.0 13 January 2022, 17:23:03 UTC
b27a8ea Release 0.16.0 (#738) * Update changelog * Bump u8darts 13 January 2022, 16:00:47 UTC
a5b1d9c Feat/quickstart (#731) * Started updating quickstart * Update quickstart * add covariates section to quickstart * Add probabilistic forecasting to quickstart * Update quickstart * Update quickstart * Update quickstart * Small cosmetics improvements * Cosmetic improvements * add encoders placeholder * Slight improvements to quickstart * Small cosmetic improvements to quickstart * formatting * formatting * formatting * Small improvement to quickstart * Address PR comments * Cosmetics on quickstart 13 January 2022, 15:42:16 UTC
back to top