Skip to content

Commit 04be06c

Browse files
committed
fix: Correct column name in training feature selection
- Updated the column name from "created_timestamp" to "created_timestamp__" to ensure proper feature extraction during model training. Signed-off-by: D. Danchev <[email protected]>
1 parent d814581 commit 04be06c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

credit_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _get_training_features(self, loans):
7474
train_X = training_df[
7575
training_df.columns.drop(self.target)
7676
.drop("event_timestamp")
77-
.drop("created_timestamp")
77+
.drop("created_timestamp__")
7878
.drop("loan_id")
7979
.drop("zipcode")
8080
.drop("dob_ssn")

0 commit comments

Comments
 (0)