Skip to content

Commit 2d3af89

Browse files
jpramilmicedre
authored andcommitted
Debug multiclass classification tutorial content
order of train fonction params
1 parent 604d74d commit 2d3af89

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docs/source/tutorials/multiclass_classification.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ training_config = TrainingConfig(
123123

124124
classifier.train(
125125
X_train, y_train,
126+
training_config,
126127
X_val, y_val,
127-
training_config=training_config,
128128
verbose=True
129129
)
130130

@@ -228,8 +228,8 @@ Training is identical to binary classification:
228228
```python
229229
classifier.train(
230230
X_train, y_train,
231+
training_config
231232
X_val, y_val,
232-
training_config=training_config
233233
)
234234
```
235235

@@ -457,3 +457,4 @@ In this tutorial, you learned:
457457
- ✅ How to handle class imbalance
458458

459459
You're now ready to tackle real-world multiclass problems!
460+

0 commit comments

Comments
 (0)