Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/source/tutorials/multiclass_classification.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ training_config = TrainingConfig(

classifier.train(
X_train, y_train,
training_config,
X_val, y_val,
training_config=training_config,
verbose=True
)

Expand Down Expand Up @@ -228,8 +228,8 @@ Training is identical to binary classification:
```python
classifier.train(
X_train, y_train,
training_config
X_val, y_val,
training_config=training_config
)
```

Expand Down Expand Up @@ -457,3 +457,4 @@ In this tutorial, you learned:
- ✅ How to handle class imbalance

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