Stefan Mejlgaard
Stefan Mejlgaard
Closes https://github.com/dexplo/dexplot/issues/11
The list of `install_requires` in `setup.py` is missing a comma between `'scipy>=1.0'` and `matplotlib>=3.1`. This makes `conda env export` fail with ```python InvalidVersionSpec: Invalid version '1.0matplotlib>=3.1': invalid character(s) ``` Section...
```python import tensorflow as tf from tensorflow_probability.python.sts.internal import util as sts_util tfd = tfp.distributions _, observed_stddev, _ = sts_util.empirical_statistics(observed_time_series) drift_scale_prior = tfd.LogNormal( loc=tf.math.log(0.05 * observed_stddev), scale=3.0, name="drift_scale_prior" ) component =...
**Bug Report** The function ```python def get_value(key: CombinedDictKey, mapping: CombinedDict): return mapping[key] ``` raises an error when `mapping` is a union of two `TypedDict`s and `key` is a union of...
The rate limit is blocking my scripts, so I am commenting them out. Please add an option to turn off rate limit.
**Describe the bug** The values added to the timeseries in `add_datetime_attribute` changed from `0.27.2` to `0.28.0`. **To Reproduce** ``` import numpy as np import pandas as pd from darts import...