Skip to content

Commit

Permalink
Merge pull request #910 from alan-turing-institute/dev
Browse files Browse the repository at this point in the history
For a 0.17.2 release
  • Loading branch information
ablaom committed Mar 7, 2022
2 parents 5c7d3c9 + cc3ec00 commit 0c4d173
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MLJ"
uuid = "add582a8-e3ab-11e8-2d5e-e98b27df1bc7"
authors = ["Anthony D. Blaom <anthony.blaom@gmail.com>"]
version = "0.17.1"
version = "0.17.2"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down
16 changes: 3 additions & 13 deletions docs/src/composing_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -701,10 +701,11 @@ diagrams, for simplicity).

### Source nodes

Only source nodes reference concrete data. A `Source` object has a
Only source nodes can reference concrete data. A `Source` object has a
single field, `data`.

```@docs
Source
source(X)
rebind!
sources
Expand All @@ -713,19 +714,8 @@ origins

### Nodes

The key components of a `Node` are:

- An *operation*, which will either be *static* (a fixed function) or
*dynamic* (such as `predict` or `transform`, dispatched on a machine).

- A *machine* on which to dispatch the operation (void if the
operation is static). The training arguments of the machine are
generally other nodes.

- Upstream connections to other nodes (including source nodes)
specified by *arguments* (one for each argument of the operation).

```@docs
Node
node
```

Expand Down
1 change: 1 addition & 0 deletions docs/src/transformers.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ MLJModels.Standardizer
MLJModels.OneHotEncoder
MLJModels.ContinuousEncoder
MLJModels.FillImputer
MLJModels.UnivariateFillImputer
MLJModels.FeatureSelector
MLJModels.UnivariateBoxCoxTransformer
MLJModels.UnivariateDiscretizer
Expand Down
2 changes: 1 addition & 1 deletion src/MLJ.jl
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export models, localmodels, @load, @iload, load, info,
FeatureSelector, UnivariateStandardizer, # builtins/Transformers.jl
Standardizer, UnivariateBoxCoxTransformer,
OneHotEncoder, ContinuousEncoder, UnivariateDiscretizer,
FillImputer, matching, BinaryThresholdPredictor
FillImputer, UnivariateFillImputer, matching, BinaryThresholdPredictor

# re-export from MLJIteration:
export MLJIteration
Expand Down

0 comments on commit 0c4d173

Please sign in to comment.