Skip to content

Commit 281a3b9

Browse files
authored
Update readme.md
1 parent 860ef2a commit 281a3b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ params = {'loss': "logisticloss",
5757
tgb = TGBoost()
5858
tgb.fit(train_X, train_y, **params)
5959

60-
preds = tgb.predict(data_X)
60+
preds = tgb.predict(train_X)
6161
feature_importance = tgb.feature_importance
6262
```
6363

@@ -92,7 +92,7 @@ params = {'loss': logistic_loss,
9292
tgb = TGBoost()
9393
tgb.fit(train_X, train_y, **params)
9494

95-
preds = tgb.predict(data_X)
95+
preds = tgb.predict(train_X)
9696
feature_importance = tgb.feature_importance
9797

9898
```

0 commit comments

Comments
 (0)