Skip to content

Commit

Permalink
Merge pull request #95 from pedrosola/master
Browse files Browse the repository at this point in the history
Fix issue #92
  • Loading branch information
shimomut authored Nov 23, 2020
2 parents d82ff06 + 3f84d91 commit 233df46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ml_ops/visualization_blog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Due to how Amazon Forecast works, all strings provided on the Datasets are trans
To perform visualizations on the forecasted data we recommend using Athena to query the tables
already created by the Step Functions workflow. You can merge the tables __train__ and __forecast__
using basic SQL queries to get a unified view over your training and forecasted dataset. Further
instructions on how to visualize using Amazon QuickSight will be provided in the [AWS Blogpost](https://aws.amazon.com/blogs/machine-learning/).
instructions on how to visualize using Amazon QuickSight will be provided in the [AWS Blogpost](https://aws.amazon.com/blogs/machine-learning/building-ai-powered-forecasting-automation-with-amazon-forecast-by-applying-mlops/).

```sql
SELECT LOWER(forecast.item_id) as item_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def create_table(table_name, attributes, input_path, delimiter=','):
)

cursor = connect(
s3_staging_dir='s3://{}/stage',
s3_staging_dir='s3://{}/stage/ '.format(bucket),
region_name=environ['AWS_REGION'],
work_group=environ['ATHENA_WORKGROUP']
).cursor()
Expand Down

0 comments on commit 233df46

Please sign in to comment.