From e6e0ba16a113aa155c499ca8a30a9a098eadbfbe Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Thu, 20 Feb 2025 08:51:14 +1300 Subject: [PATCH 1/5] tweak readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b9f893..14bba9c 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ 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. +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). From 289eef464ad1853bbe7e48b03b929bfd86cd31b8 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Thu, 20 Feb 2025 08:55:00 +1300 Subject: [PATCH 2/5] tweak readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 14bba9c..ee1bacd 100644 --- a/README.md +++ b/README.md @@ -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) +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). From fe8e37d819903937681a669bfca39d80d000c40b Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Mar 2025 10:42:30 +1300 Subject: [PATCH 3/5] fix doc-string typo --- src/learners/incremental_algorithms.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/learners/incremental_algorithms.jl b/src/learners/incremental_algorithms.jl index 202f1cc..8b2a3ee 100644 --- a/src/learners/incremental_algorithms.jl +++ b/src/learners/incremental_algorithms.jl @@ -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) ``` From dc5de6fcd2171d4a77731690b10b5461f3088a10 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Mar 2025 10:43:22 +1300 Subject: [PATCH 4/5] bump 0.2.3 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 87a39e9..6c7155a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "LearnTestAPI" uuid = "3111ed91-c4f2-40e7-bb19-7f6c618409b8" authors = ["Anthony D. Blaom "] -version = "0.2.2" +version = "0.2.3" [deps] CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597" From 54d04f52c21cb371f591b594ae034dda2306468f Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Mar 2025 12:12:53 +1300 Subject: [PATCH 5/5] address actions/cache deprecation --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7c0ea8..ea960db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: