Skip to content

Commit 0dc3839

Browse files
authored
Merge pull request #18 from JuliaAI/dev
For a 0.2.3 release
2 parents 4a2282e + 54d04f5 commit 0dc3839

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
version: ${{ matrix.version }}
3131
arch: ${{ matrix.arch }}
32-
- uses: actions/cache@v1
32+
- uses: julia-actions/cache@v1
3333
env:
3434
cache-name: cache-artifacts
3535
with:

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LearnTestAPI"
22
uuid = "3111ed91-c4f2-40e7-bb19-7f6c618409b8"
33
authors = ["Anthony D. Blaom <[email protected]>"]
4-
version = "0.2.2"
4+
version = "0.2.3"
55

66
[deps]
77
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ machine learning and statistics
88
[![Build Status](https://github.com/JuliaAI/LearnTestAPI.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/LearnTestAPI.jl/actions)
99
[![codecov](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl/graph/badge.svg?token=gCIQfDtzMt)](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl)
1010

11-
See [LearnAPI.jl](https://juliaai.github.io/LearnAPI.jl/stable/) for documentation.
11+
This repo also provides some built-in learner implementations, for testing
12+
meta-algorithms, and to serve as exemplars.
13+
14+
Documentation is [here](https://juliaai.github.io/LearnAPI.jl/stable/testing_an_implementation/) (embedded in the [LearnAPI.jl](https://juliaai.github.io/LearnAPI.jl/stable/) documentation).

src/learners/incremental_algorithms.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ additional observations post facto: The following is equivalent to `d2 =
2929
predict(NormalEstimator(), vcat(y, ynew))`:
3030
3131
```julia
32-
update_observations(model, ynew)
32+
model = update_observations(model, ynew)
3333
d2 = predict(model)
3434
```
3535

0 commit comments

Comments
 (0)