Skip to content

Commit

Permalink
📝 Improve documentation #89
Browse files Browse the repository at this point in the history
  • Loading branch information
EssamWisam committed Mar 5, 2024
1 parent 0f53fe8 commit 7ff8c3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ Xyover, cache = TableTransforms.apply(oversampler, Xy) # equivalently
```
The `reapply(oversampler, Xy, cache)` method from `TableTransforms` simply falls back to `apply(oversample, Xy)` and the `revert(oversampler, Xy, cache)` reverts the transform by removing the oversampled observations from the table.

Notice that because the interfaces of `MLJ` and `TableTransforms` use the same model names, you will have to specify the source of the model if both are used in the same file (e.g., `Imbalance.TableTransforms.SMOTE`) for the example above.

## 🎨 Features
- Supports multi-class variants of the algorithms and both nominal and continuous features
Expand Down
2 changes: 2 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ Xyover, cache = TableTransforms.apply(oversampler, Xy) # equivalently
```
The `reapply(oversampler, Xy, cache)` method from `TableTransforms` simply falls back to `apply(oversample, Xy)` and the `revert(oversampler, Xy, cache)` reverts the transform by removing the oversampled observations from the table.

Notice that because the interfaces of `MLJ` and `TableTransforms` use the same model names, you will have to specify the source of the model if both are used in the same file (e.g., `Imbalance.TableTransforms.SMOTE`) for the example above.


## Features
- Supports multi-class variants of the algorithms and both nominal and continuous features
Expand Down

0 comments on commit 7ff8c3a

Please sign in to comment.