Skip to content

Commit

Permalink
Update location of latest_comprehensive.parquet (#271)
Browse files Browse the repository at this point in the history
convert relevant nssp-etl directories
  • Loading branch information
damonbayer authored Jan 3, 2025
1 parent 2510e26 commit 0fb9928
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pipelines/batch/setup_eval_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def main(
"--exclude-last-n-days {exclude_last_n} "
"--score "
"--eval-data-path "
"nssp-archival-vintages/latest_comprehensive.parquet"
"nssp-etl/latest_comprehensive.parquet"
"'"
)

Expand Down
2 changes: 1 addition & 1 deletion pipelines/batch/setup_parameter_inference_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def main(
"--exclude-last-n-days 5 "
"--no-score "
"--eval-data-path "
"nssp-archival-vintages/latest_comprehensive.parquet"
"nssp-etl/latest_comprehensive.parquet"
"'"
)

Expand Down
2 changes: 1 addition & 1 deletion pipelines/batch/setup_prod_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def main(
"--exclude-last-n-days {exclude_last_n_days} "
"--no-score "
"--eval-data-path "
"nssp-archival-vintages/latest_comprehensive.parquet"
"nssp-etl/latest_comprehensive.parquet"
"'"
)

Expand Down
2 changes: 1 addition & 1 deletion pipelines/generate_test_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ generate_fake_state_level_data <-
gold_dir <- path(private_data_dir, "nssp_state_level_gold")
dir_create(gold_dir, recurse = TRUE)

comp_dir <- path(private_data_dir, "nssp-archival-vintages")
comp_dir <- path(private_data_dir, "nssp-etl")
dir_create(comp_dir, recurse = TRUE)

state_data <-
Expand Down
4 changes: 2 additions & 2 deletions pipelines/tests/test_end_to_end.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ do
--n-samples 250 \
--n-warmup 250 \
--score \
--eval-data-path "$BASE_DIR/private_data/nssp-archival-vintages"
--eval-data-path "$BASE_DIR/private_data/nssp-etl"
if [ $? -ne 0 ]; then
echo "TEST-MODE FAIL: Forecasting/postprocessing/scoring pipeline failed"
exit 1
Expand All @@ -50,7 +50,7 @@ echo "TEST-MODE: Running batch postprocess..."

python pipelines/postprocess_forecast_batches.py \
$BASE_DIR/private_data \
$BASE_DIR/private_data/nssp-archival-vintages/latest_comprehensive.parquet
$BASE_DIR/private_data/nssp-etl/latest_comprehensive.parquet

if [ $? -ne 0 ]; then
echo "TEST-MODE FAIL: Batch postprocess failed."
Expand Down

0 comments on commit 0fb9928

Please sign in to comment.