fdb66991f2a64b264cd45abb9015b6be5997a72b,statsmodels/tsa/exponential_smoothing/ets.py,ETSModel,_start_params,#ETSModel#,454
Before Change
start_params = [init_params(lb[0], ub[0])]
idx = 1
if self.trend:
start_params += [init_params(lb[idx], ub[idx])]
idx += 1
if self.seasonal:
start_params += [init_params(lb[idx], ub[idx])]
idx += 1
After Change
start_params += [np.clip(0.01, *bounds[idx])]
idx += 1
if self.seasonal:
start_params += [np.clip(0.01, *bounds[idx])]
idx += 1
if self.damped_trend:
start_params += [np.clip(0.98, *bounds[idx])]
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 2
Instances
Project Name: statsmodels/statsmodels
Commit Name: fdb66991f2a64b264cd45abb9015b6be5997a72b
Time: 2020-06-04
Author: samuel.scherrer@posteo.de
File Name: statsmodels/tsa/exponential_smoothing/ets.py
Class Name: ETSModel
Method Name: _start_params
Project Name: Esri/raster-functions
Commit Name: e698c1f1bbab1691152743a4516cf574c406e391
Time: 2015-02-11
Author: jwasilkowski@esri.com
File Name: functions/LinearSpectralUnmixing.py
Class Name: LinearSpectralUnmixing
Method Name: updatePixels
Project Name: benelot/pybullet-gym
Commit Name: 795c63dc3a97110bebca0e22af250ad9f1d48c20
Time: 2018-10-08
Author: be.ellenberger@gmail.com
File Name: pybulletgym/envs/mujoco/robot_pendula.py
Class Name: InvertedDoublePendulum
Method Name: calc_state
Project Name: sassoftware/python-dlpy
Commit Name: 33949cca69b00f2f325fc32bc7489438355a4764
Time: 2019-10-21
Author: wenyu.shi@sas.com
File Name: dlpy/model_conversion/sas_onnx_parse.py
Class Name:
Method Name: write_weights_hdf5