Creare un modello

Feature Engineering con PySpark

John Hogue

Lead Data Scientist, General Mills

RandomForestRegressor

Parametri base del modello

  • featuresCol="features"
  • labelCol="label"
  • predictionCol="prediction"
  • seed=None

Valori dei nostri parametri

  • featuresCol="features"
  • labelCol="SALESCLOSEPRICE"
  • predictionCol="Prediction_Price"
  • seed=42
Feature Engineering con PySpark

Addestrare una Random Forest

from pyspark.ml.regression import RandomForestRegressor
# Inizializza il modello con le colonne da usare
rf = RandomForestRegressor(featuresCol="features",
                           labelCol="SALESCLOSEPRICE",
                           predictionCol="Prediction_Price",
                           seed=42
                           )
# Allena il modello
model = rf.fit(train_df)
Feature Engineering con PySpark

Predire con un modello

# Effettua le previsioni
predictions = model.transform(test_df)
# Esamina i risultati
predictions.select("Prediction_Price", "SALESCLOSEPRICE").show(5)
+------------------+---------------+
|  Prediction_Price|SALESCLOSEPRICE|
+------------------+---------------+
|426029.55463222397|         415000|
| 708510.8806005502|         842500|
| 164275.7116183204|         161000|
| 208943.4143642175|         200000|
|217152.43272221283|         205000|
+------------------+---------------+
only showing top 5 rows
Feature Engineering con PySpark

Valutare un modello

from pyspark.ml.evaluation import RegressionEvaluator
# Seleziona le colonne per calcolare l'errore sul test
evaluator = RegressionEvaluator(labelCol="SALESCLOSEPRICE", 
                                predictionCol="Prediction_Price")
# Crea le metriche di valutazione
rmse = evaluator.evaluate(predictions, {evaluator.metricName: "rmse"})
r2 = evaluator.evaluate(predictions, {evaluator.metricName: "r2"})
# Stampa le metriche del modello
print('RMSE: ' + str(rmse))
print('R^2: ' + str(r2))
RMSE: 22898.84041072095
R^2: 0.9666594402208077
Feature Engineering con PySpark

Creiamo un modello sui dati!

Feature Engineering con PySpark

Preparing Video For Download...