Skip to content
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/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
coverage:
ignore:
- "src/learners/gradient_descent.jl"
- "**/gradient_descent.jl"
project:
default:
threshold: 0.5%
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
verbose: true
ignore:
- "**/gradient_descent.jl"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/learners/dimension_reduction.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file defines `TruncatedSVD(; codim=1)`

using LearnAPI
using LinearAlgebra
using LinearAlgebra


# # DIMENSION REDUCTION USING TRUNCATED SVD DECOMPOSITION
Expand Down