From cefdcd8b29c080d34e14c82582c702dd6025be85 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Feb 2025 12:44:37 +1300 Subject: [PATCH 1/4] dummy commit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a534d10..7b9f893 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,5 @@ machine learning and statistics [![Lifecycle:Maturing](https://img.shields.io/badge/Lifecycle-Maturing-007EC6)](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/ROADMAP.md) [![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. From de0e1dcbc54088a146d8f55739ab75e83c4c6273 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Feb 2025 13:02:08 +1300 Subject: [PATCH 2/4] tweak codecov.yml --- .github/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/codecov.yml b/.github/codecov.yml index 4718e32..f60347c 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -1,6 +1,6 @@ coverage: ignore: - - "src/learners/gradient_descent.jl" + - "**/gradient_descent.jl" project: default: threshold: 0.5% From e67f0760c2ad8b428ef3ecbeb2482620d369ff91 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Feb 2025 13:12:44 +1300 Subject: [PATCH 3/4] try to fix codecov --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7c0ea8..a53976b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,3 +49,5 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: false verbose: true + ignore: + - "**/gradient_descent.jl" From ee1acd183da3709bf78e89c1a5b35d553724b731 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 7 Feb 2025 13:13:53 +1300 Subject: [PATCH 4/4] dummy commit --- src/learners/dimension_reduction.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/learners/dimension_reduction.jl b/src/learners/dimension_reduction.jl index 0b64a55..20424c7 100644 --- a/src/learners/dimension_reduction.jl +++ b/src/learners/dimension_reduction.jl @@ -1,7 +1,7 @@ # This file defines `TruncatedSVD(; codim=1)` using LearnAPI -using LinearAlgebra +using LinearAlgebra # # DIMENSION REDUCTION USING TRUNCATED SVD DECOMPOSITION