You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/index.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,16 +35,15 @@ Xnew = transform(mach, X)
35
35
```
36
36
37
37
## Available Transformers
38
-
In `MLJTransforms` we define "encoders" to encompass models that specifically operate by encoding categorical variables; meanwhile, "transformers" refers to models that apply more generic transformations on columns that are not necessarily categorical. We define the following taxonomy for different models founds in `MLJTransforms`:
39
-
40
-
| Genre | Definition |
41
-
|:----------:|:----------:|
42
-
|**Classical Encoders**| Well known and commonly used categorical encoders |
43
-
|**Neural-based Encoders**| Categorical encoders based on neural networks |
44
-
|**Contrast Encoders**| Categorical encoders that could be modeled by a contrast matrix |
45
-
|**Utility Encoders**| Categorical encoders meant to be used as preprocessors for other encoders or models |
46
-
|**Other Transformers**| More generic transformers that go beyond categorical encoding |
47
-
48
-
49
-
50
-
38
+
In `MLJTransforms` we denote transformers that operate on columns with `Continuous` and/or `Count`[scientific types](https://juliaai.github.io/ScientificTypes.jl/dev/) as numerical transformers. Meanwhile, categorical transformers operate on `Multiclass` and/or `OrderedFactor`[scientific types](https://juliaai.github.io/ScientificTypes.jl/dev/). Most categorical transformers in this package operate by converting categorical values into numerical values or vectors, and are therefore considered categorical encoders.
39
+
40
+
Based on this, we categorize the methods as follows, with further distinctions for categorical encoders:
0 commit comments