Skip to content

Commit

Permalink
Merge pull request #123 from JuliaTrustworthyAI/122-predict-is-slow
Browse files Browse the repository at this point in the history
Predicting using MLJ interface is slow
  • Loading branch information
pat-alt authored Sep 12, 2024
2 parents 78c846e + 9873c55 commit 7a0a783
Show file tree
Hide file tree
Showing 7 changed files with 1,048 additions and 492 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- '1.10'
os:
- ubuntu-latest
Expand All @@ -29,10 +28,10 @@ jobs:
- x64
include:
- os: windows-latest
version: '1.9'
version: '1'
arch: x64
- os: macOS-latest
version: '1.9'
version: '1'
arch: x64
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

*Note*: We try to adhere to these practices as of version [v0.2.1].

## Version [1.1.1] - 2024-09-12

### Changed

- Fixed an issue in MLJFlux implementation that led to long compute times for predictions. [#122]

## Version [1.1.0] - 2024-09-03

### Changed
Expand Down
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LaplaceRedux"
uuid = "c52c1a26-f7c5-402b-80be-ba1e638ad478"
authors = ["Patrick Altmeyer"]
version = "1.1.0"
version = "1.1.1"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down Expand Up @@ -36,13 +36,13 @@ MLJModelInterface = "1.8.0"
MLUtils = "0.4"
Optimisers = "0.2, 0.3"
ProgressMeter = "1.7.2"
Random = "1.9, 1.10"
Random = "1.10"
Statistics = "1"
Tables = "1.10.1"
Test = "1.9, 1.10"
Test = "1.10"
Tullio = "0.3.5"
Zygote = "0.6"
julia = "1.9, 1.10"
julia = "1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down
Loading

2 comments on commit 7a0a783

@pat-alt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/115071

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.1 -m "<description of version>" 7a0a78321c50abff16cffe32a79e92bdf9992fc4
git push origin v1.1.1

Please sign in to comment.