Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix import statements in README #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ We now build a model where the demand linearly depends on the temperature,
but also has two seasonal components, and an auto-regressive component.

```python
import sts_jax.structural_time_series.sts_model as sts
import sts_jax.structural_time_series as sts

hour_of_day_effect = sts.SeasonalDummy(num_seasons=24,
name='hour_of_day_effect')
Expand Down Expand Up @@ -181,7 +181,7 @@ of this demo.


```python
import sts_jax.structural_time_series.sts_model as sts
import sts_jax.structural_time_series as sts

# This example uses a synthetic dataset and the STS model contains only a
# local linear trend component.
Expand Down