Skip to content

Commit

Permalink
Remove subset on train data
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerlmichael committed Jan 7, 2025
1 parent 65740c7 commit 8d7df91
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pipeline/01-train.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ message("Preparing model training data")

training_data_full <- read_parquet(paths$input$training$local) %>%
filter(!sv_is_outlier) %>%
arrange(meta_sale_date) %>%
sample_frac(size = 0.20)
arrange(meta_sale_date)


# Load the full set of training data, then arrange by sale date in order to
Expand Down

0 comments on commit 8d7df91

Please sign in to comment.