Skip to content

Commit

Permalink
Minor bug fixes for streamlit app
Browse files Browse the repository at this point in the history
  • Loading branch information
j-beastman committed Jul 23, 2024
1 parent 7c8ef54 commit a986a0f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
14 changes: 7 additions & 7 deletions YoutubeForecastMaker/conf/base/parameters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,17 @@ deploy_forecast:
runLeakageRemovedFeatureList: true
trigger:
type: accuracy_decline
schedule:
minute:
- 0
schedule:
minute:
- 0
hour:
- 0
- 0
dayOfMonth:
- "*"
- '*'
month:
- "*"
- '*'
dayOfWeek:
- "*"
- '*'
statusDeclinesToWarning: true
statusDeclinesToFailing: false
statusStillInDecline: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def ensure_deployment_settings(

if association_id is None:
request_body["associationId"] = {
"columnNames": ["association_id"],
"requiredInPredictionRequests": False,
"autoGenerateId": True,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def create_pipeline(**kwargs) -> Pipeline:
"datetime_partition_column": "params:project.datetime_partitioning_config.datetime_partition_column",
"multiseries_id_column": "params:project.datetime_partitioning_config.multiseries_id_columns",
"prediction_interval": "params:deployment.prediction_interval",
"prediction_data": "prediction_data_id"
"scoring_data": "prediction_data_id"
},
outputs="app_parameters",
),
Expand Down

0 comments on commit a986a0f

Please sign in to comment.