mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-28 22:56:38 +00:00
Incorporate cmdstanpy v1.0.4 updates (#2259)
This commit is contained in:
parent
4a53023bec
commit
201887403b
3 changed files with 2 additions and 4 deletions
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
from abc import abstractmethod, ABC
|
||||
from tempfile import mkdtemp
|
||||
from typing import Tuple
|
||||
from collections import OrderedDict
|
||||
from enum import Enum
|
||||
|
|
@ -92,7 +91,6 @@ class CmdStanPyBackend(IStanBackend):
|
|||
inits=stan_init,
|
||||
algorithm='Newton' if stan_data['T'] < 100 else 'LBFGS',
|
||||
iter=int(1e4),
|
||||
output_dir = mkdtemp(),
|
||||
)
|
||||
args.update(kwargs)
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
requires = [
|
||||
"setuptools>=42",
|
||||
"wheel",
|
||||
"cmdstanpy>=1.0.1, !=1.0.2, !=1.0.3",
|
||||
"cmdstanpy>=1.0.4",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Cython>=0.22
|
||||
cmdstanpy>=1.0.1,!=1.0.2,!=1.0.3
|
||||
cmdstanpy>=1.0.4
|
||||
numpy>=1.15.4
|
||||
pandas>=1.0.4
|
||||
matplotlib>=2.0.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue