Skip to content

Commit b60fc22

Browse files
committed
simplify, removing in particular, obsfit, obspredict, obstransform
1 parent b53d2fd commit b60fc22

26 files changed

+1062
-1123
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1919
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2020

2121
[targets]
22-
test = ["DataFrames", "LinearAlgebra", "MLUtils", "Serialization", "SparseArrays", "Tables", "Test"]
22+
test = ["DataFrames", "LinearAlgebra", "MLUtils", "Serialization", "Tables", "Test"]

docs/make.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ makedocs(
1111
"Home" => "index.md",
1212
"Anatomy of an Implementation" => "anatomy_of_an_implementation.md",
1313
"Reference" => "reference.md",
14-
"Kinds of Target Proxy" => "kinds_of_target_proxy.md",
15-
"fit" => "fit.md",
16-
"predict, transform, and relatives" => "predict_transform.md",
17-
"minimize" => "minimize.md",
18-
"obs" => "obs.md",
19-
"Accessor Functions" => "accessor_functions.md",
20-
"Algorithm Traits" => "traits.md",
14+
"... fit" => "fit.md",
15+
"... predict/transform" => "predict_transform.md",
16+
"... Kinds of Target Proxy" => "kinds_of_target_proxy.md",
17+
"... minimize" => "minimize.md",
18+
"... obs" => "obs.md",
19+
"... Accessor Functions" => "accessor_functions.md",
20+
"... Algorithm Traits" => "traits.md",
2121
"Common Implementation Patterns" => "common_implementation_patterns.md",
2222
"Testing an Implementation" => "testing_an_implementation.md",
2323
],

docs/src/accessor_functions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# [Accessor Functions](@id accessor_functions)
22

3-
The sole argument of an accessor function is the output, `model`, of [`fit`](@ref) or
4-
[`obsfit`](@ref).
3+
The sole argument of an accessor function is the output, `model`, of [`fit`](@ref).
54

65
- [`LearnAPI.algorithm(model)`](@ref)
76
- [`LearnAPI.extras(model)`](@ref)
@@ -12,6 +11,7 @@ The sole argument of an accessor function is the output, `model`, of [`fit`](@re
1211
- [`LearnAPI.feature_importances(model)`](@ref)
1312
- [`LearnAPI.training_labels(model)`](@ref)
1413
- [`LearnAPI.training_losses(model)`](@ref)
14+
- [`LearnAPI.training_predictions(model)`](@ref)
1515
- [`LearnAPI.training_scores(model)`](@ref)
1616
- [`LearnAPI.components(model)`](@ref)
1717

@@ -33,6 +33,7 @@ LearnAPI.tree
3333
LearnAPI.trees
3434
LearnAPI.feature_importances
3535
LearnAPI.training_losses
36+
LearnAPI.training_predictions
3637
LearnAPI.training_scores
3738
LearnAPI.training_labels
3839
LearnAPI.components

0 commit comments

Comments
 (0)