|
import pandas as pd |
|
from sklearn.model_selection import train_test_split |
|
from sklearn.ensemble import GradientBoostingRegressor |
|
from sklearn.metrics import mean_squared_error |
|
import numpy as np |
|
|
|
|
|
train_data = pd.read_csv("./input/train.csv") |
|
test_data = pd.read_csv("./input/test.csv") |
|
|
|
|
|
X = train_data.drop(["id", "Strength"], axis=1) |
|
y = train_data["Strength"] |
|
X_test = test_data.drop("id", axis=1) |
|
|
|
|
|
X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.2, random_state=42) |
|
|
|
|
|
model = GradientBoostingRegressor(random_state=42) |
|
model.fit(X_train, y_train) |
|
|
|
|
|
y_pred_val = model.predict(X_val) |
|
|
|
|
|
rmse = np.sqrt(mean_squared_error(y_val, y_pred_val)) |
|
print(f"Validation RMSE: {rmse}") |
|
|
|
|
|
test_predictions = model.predict(X_test) |
|
|
|
|
|
submission = pd.DataFrame({"id": test_data["id"], "Strength": test_predictions}) |
|
submission.to_csv("./working/submission.csv", index=False) |
|
|