Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For a 0.2.3 release #18

Merged
merged 5 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: julia-actions/cache@v1
env:
cache-name: cache-artifacts
with:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LearnTestAPI"
uuid = "3111ed91-c4f2-40e7-bb19-7f6c618409b8"
authors = ["Anthony D. Blaom <[email protected]>"]
version = "0.2.2"
version = "0.2.3"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ machine learning and statistics
[![Build Status](https://github.com/JuliaAI/LearnTestAPI.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/LearnTestAPI.jl/actions)
[![codecov](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl/graph/badge.svg?token=gCIQfDtzMt)](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl)

See [LearnAPI.jl](https://juliaai.github.io/LearnAPI.jl/stable/) for documentation.
This repo also provides some built-in learner implementations, for testing
meta-algorithms, and to serve as exemplars.

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).
2 changes: 1 addition & 1 deletion src/learners/incremental_algorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ additional observations post facto: The following is equivalent to `d2 =
predict(NormalEstimator(), vcat(y, ynew))`:

```julia
update_observations(model, ynew)
model = update_observations(model, ynew)
d2 = predict(model)
```

Expand Down
Loading