Skip to content

Releases: facebook/prophet

v1.3.0

27 Jan 22:19
c01a23a

Choose a tag to compare

What's Changed

Full Changelog: v1.2.2...v1.3.0

v1.2.2

25 Jan 12:36
2cdb2cb

Choose a tag to compare

What's Changed

  • R Package: Update C++ Version to Comply with CRAN Policy by @mitokic in #2707
  • chore: Add .tar.gz upload for R package to CI by @tcuongd in #2708
  • fix: max version on pandas by @tcuongd in #2711
  • fix: constrain numpy by @tcuongd in #2712
  • minor: Re-generated holidays.csv for R package.

New Contributors

Full Changelog: v1.2.1-patched...v1.2.2-patched

v1.2.1-patched

21 Oct 22:35

Choose a tag to compare

  • Version number for Python package

v1.2.1

21 Oct 21:04
52a58c3

Choose a tag to compare

What's Changed

Full Changelog: v1.2.0...v1.2.1

v1.2.0

19 Oct 23:06
4bffc21

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.1.7...v1.2.0

v1.1.7-patched

30 May 11:37

Choose a tag to compare

bump ci build tools

v1.1.7

30 May 10:17

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.1.6...v1.1.7

1.1.6 (PyPI publishing fix)

02 Oct 23:56
2a57e9d

Choose a tag to compare

See previous release for actual changelog.

1.1.6

29 Sep 00:34

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.1.5...v1.1.6

1.1.5

10 Oct 12:57
211d2eb

Choose a tag to compare

What's Changed

Python

  • Upgraded cmdstan version to 2.33.1, enabling Apple M2 support. @lucentcosmos @tcuongd
  • Added a binary distribution for the macOS arm64 architecture (M1, M2 chips). @tcuongd
  • Added argument scaling to the Prophet() instantiation. Allows minmax scaling on y instead of
    absmax scaling (dividing by the maximum value). scaling='absmax' by default, preserving the
    behaviour of previous versions. @yoziru
  • Added argument holidays_mode to the Prophet() instantiation. Allows holidays regressors to have
    a different mode than seasonality regressors. holidays_mode takes the same value as seasonality_mode
    if not specified, preserving the behaviour of previous versions. @CoreyBryant-everi
  • Added two methods to the Prophet object: preprocess() and calculate_initial_params(). These
    do not need to be called and will not change the model fitting process. Their purpose is to provide
    clarity on the pre-processing steps taken (y scaling, creating fourier series, regressor scaling,
    setting changepoints, etc.) before the data is passed to the stan model. @tcuongd
  • Added argument extra_output_columns to cross_validation(). The user can specify additional columns
    from predict() to include in the final output alongside ds and yhat, for example extra_output_columns=['trend']. @dchiang00
  • prophet's custom hdays module was deprecated last version and is now removed.

R

  • Updated holidays data based on holidays v0.34

Full Changelog: v1.1.4...1.1.5