Skip to content

Commit

Permalink
Merge pull request #53 from JuliaAI/doc-fix-report
Browse files Browse the repository at this point in the history
Fix some doc strings
  • Loading branch information
ablaom authored Nov 28, 2023
2 parents de9a8c8 + a00180c commit 51dc062
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ julia = "1.6"
MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
MLJTestInterface = "72560011-54dd-4dc2-94f3-c5de45b75ecd"
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
StatisticalMeasures = "a19d573c-0a75-4610-95b3-7071388c7541"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["MLJBase", "MLJTestInterface", "StableRNGs", "Test"]
test = ["MLJBase", "MLJTestInterface", "StableRNGs", "StatisticalMeasures", "Test"]
8 changes: 8 additions & 0 deletions src/MLJDecisionTreeInterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,8 @@ The fields of `fitted_params(mach)` are:
# Report
The fields of `report(mach)` are:
- `features`: the names of the features encountered in training
Expand Down Expand Up @@ -862,6 +864,8 @@ The fields of `fitted_params(mach)` are:
# Report
The fields of `report(mach)` are:
- `features`: the names of the features encountered in training
Expand Down Expand Up @@ -968,6 +972,8 @@ The fields of `fitted_params(mach)` are:
# Report
The fields of `report(mach)` are:
- `features`: the names of the features encountered in training
Expand Down Expand Up @@ -1079,6 +1085,8 @@ The fields of `fitted_params(mach)` are:
# Report
The fields of `report(mach)` are:
- `features`: the names of the features encountered in training
Expand Down
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ using StableRNGs
using Random
using Tables
import MLJTestInterface
using StatisticalMeasures

# load code to be tested:
import DecisionTree
Expand Down

0 comments on commit 51dc062

Please sign in to comment.