Skip to content

Commit

Permalink
change dataset path from AWS to local
Browse files Browse the repository at this point in the history
  • Loading branch information
wendycwong committed Jul 31, 2024
1 parent 7653b84 commit 87ea910
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ source("../../../scripts/h2o-r-test-setup.R")

# add test from Erin Ledell
glmBetaConstraints <- function() {
df <- h2o.importFile("https://s3.amazonaws.com/erin-data/higgs/higgs_train_10k.csv")
test <- h2o.importFile("https://s3.amazonaws.com/erin-data/higgs/higgs_test_5k.csv")
df <- h2o.importFile(locate("smalldata/higgs/higgs_train_10k.csv"))
test <- h2o.importFile(locate("smalldata/higgs/higgs_test_5k.csv"))

y <- "response"
x <- setdiff(names(df), y)
Expand Down

0 comments on commit 87ea910

Please sign in to comment.