Machine Learning su Spark

Introduzione a Spark con sparklyr in R

Richie Cotton

Data Evangelist at DataCamp

Modelli gradient boosted trees e random forest

model_formula <- reformulate(features, response = "response")

model <- training_data %>%
  ml_gradient_boosted_trees(formula)

predicted <- ml_predict(
    model,
    testing_data) %>% pull(prediction)

results <- testing_data %>%
  select(response)
  collect() %>%
  mutate(predicted_response = predicted)
Introduzione a Spark con sparklyr in R

Esercitiamoci!

Introduzione a Spark con sparklyr in R

Preparing Video For Download...