Skip to content

Commit eff5da6

Browse files
authored
Merge pull request #1 from JuliaAI/add-target-encoding
Add Target Encoding, Frequency Encoding, Ordinal Encoding and CardinalityReducer.
2 parents 27b97c4 + 3fa9ccc commit eff5da6

25 files changed

+4729
-9
lines changed

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ docs/site/
2121
# It records a fixed state of all packages used by the project. As such, it should not be
2222
# committed for packages, but should be committed for applications that require a static
2323
# environment.
24-
Manifest.toml
25-
*.ipynb
26-
*.csv
24+
/Manifest.toml
25+
meh/*.ipynb
26+
*.csv
27+
.DS_Store
28+
**/**/other_transformers
29+
/*.jl

Project.toml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,36 @@ uuid = "23777cdb-d90c-4eb0-a694-7c2b83d5c1d6"
33
authors = ["Essam <[email protected]> and contributors"]
44
version = "1.0.0-DEV"
55

6+
[deps]
7+
BitBasis = "50ba71b6-fa0f-514d-ae9a-0916efc90dcf"
8+
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
9+
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
10+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
11+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
12+
MLJModelInterface = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
13+
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
14+
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
15+
ScientificTypes = "321657f4-b219-11e9-178b-2701a2544e81"
16+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
17+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
18+
TableOperations = "ab02a1b2-a7df-11e8-156e-fb1833f50b87"
19+
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
20+
621
[compat]
22+
CategoricalArrays = "0.10"
23+
MLJModelInterface = "1.10"
24+
ScientificTypes = "3.0"
25+
StatsBase = "0.34"
26+
TableOperations = "1.2"
27+
Tables = "1.11"
728
julia = "1.6.7"
829

930
[extras]
31+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
32+
MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
33+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1034
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
35+
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
1136

1237
[targets]
13-
test = ["Test"]
38+
test = ["Test", "DataFrames", "MLJBase", "Random", "StableRNGs"]

0 commit comments

Comments
 (0)