瀏覽代碼

Version bump

bl 8 年之前
父節點
當前提交
2e9768348b
共有 5 個文件被更改,包括 16 次插入5 次删除
  1. 2 2
      R/DESCRIPTION
  2. 11 0
      README.md
  3. 1 1
      python/fbprophet/__init__.py
  4. 1 1
      python/fbprophet/tests/test_prophet.py
  5. 1 1
      python/setup.py

+ 2 - 2
R/DESCRIPTION

@@ -1,7 +1,7 @@
 Package: prophet
 Title: Automatic Forecasting Procedure
-Version: 0.1.1
-Date: 2017-04-17
+Version: 0.2
+Date: 2017-09-02
 Authors@R: c(
   person("Sean", "Taylor", email = "sjt@fb.com", role = c("cre", "aut")),
   person("Ben", "Letham", email = "bletham@fb.com", role = "aut")

+ 11 - 0
README.md

@@ -14,6 +14,7 @@ Prophet is [open source software](https://code.facebook.com/projects/) released
 - Prophet R package: https://cran.r-project.org/package=prophet
 - Prophet Python package: https://pypi.python.org/pypi/fbprophet/
 - Release blogpost: https://research.fb.com/prophet-forecasting-at-scale/
+- Prophet paper, "Forecasting at Scale": https://peerj.com/preprints/3190.pdf
 
 ## Installation in R
 
@@ -59,6 +60,16 @@ Use `conda install gcc` to set up gcc. The easiest way to install Prophet is thr
 
 ## Changelog
 
+### Version 0.2 (2017.09.02)
+
+- Forecasting with sub-daily data
+- Daily seasonality, and custom seasonalities
+- Extra regressors
+- Access to posterior predictive samples
+- Cross-validation function
+- Saturating minimums
+- Bugfixes
+
 ### Version 0.1.1 (2017.04.17)
 
 - Bugfixes

+ 1 - 1
python/fbprophet/__init__.py

@@ -7,4 +7,4 @@
 
 from fbprophet.forecaster import Prophet
 
-__version__ = '0.1.1'
+__version__ = '0.2'

+ 1 - 1
python/fbprophet/tests/test_prophet.py

@@ -532,7 +532,7 @@ class TestProphet(TestCase):
         fcst = m.predict(future)
         self.assertEqual(fcst.shape[1], 31)
         self.assertEqual(fcst['binary_feature'][0], 0)
-        self.assertEqual(
+        self.assertAlmostEqual(
             fcst['extra_regressors'][0],
             fcst['numeric_feature'][0] + fcst['binary_feature2'][0],
         )

+ 1 - 1
python/setup.py

@@ -97,7 +97,7 @@ class TestCommand(test_command):
 
 setup(
     name='fbprophet',
-    version='0.1.1',
+    version='0.2',
     description='Automatic Forecasting Procedure',
     url='https://facebookincubator.github.io/prophet/',
     author='Sean J. Taylor <sjt@fb.com>, Ben Letham <bletham@fb.com>',