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

Hyperparameter optimization #15

Merged
merged 11 commits into from
Mar 22, 2024
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 @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ["1.8", "1.9", "1.10"]
julia-version: ["1.8", "1.10"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 8 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this Julia package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.6] – unreleased

### Added

* Hyperparameter optimization example.

## [0.1.3] – 11/12/2023

### Added
Expand Down Expand Up @@ -37,5 +43,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Setup the project to collect example objectives for [Manopt.jl](https://manopt.org) which are well-documented and well-tested
- Setup Documentation to provide one example Quarto file for every example objective to illustrate how to use them
* Setup the project to collect example objectives for [Manopt.jl](https://manopt.org) which are well-documented and well-tested
* Setup Documentation to provide one example Quarto file for every example objective to illustrate how to use them.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ManoptExamples"
uuid = "5b8d5e80-5788-45cb-83d6-5e8f1484217d"
authors = ["Ronny Bergmann <[email protected]>"]
version = "0.1.5"
version = "0.1.6"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
3 changes: 2 additions & 1 deletion docs/CondaPkg.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[deps]
jupyter = ""
python = "3.11"
optuna = "3.5"
python = "3.11"
2 changes: 2 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ if "--quarto" ∈ ARGS
Pkg.instantiate()
Pkg.build("IJulia") # build IJulia to the right version.
Pkg.activate(@__DIR__) # but return to the docs one before
CondaPkg.add("optuna")
run(`quarto render $(examples_folder)`)
end
end
Expand Down Expand Up @@ -101,6 +102,7 @@ examples_menu =
"Rosenbrock Metric" => "examples/Difference-of-Convex-Rosenbrock.md",
"Frank Wolfe comparison" => "examples/Difference-of-Convex-Frank-Wolfe.md",
],
"Hyperparameter optimziation" => "examples/HyperparameterOptimization.md",
"The Rayleigh Quotient" => "examples/RayleighQuotient.md",
"Riemannian Mean" => "examples/Riemannian-mean.md",
"Robust PCA" => "examples/Robust-PCA.md",
Expand Down
Loading
Loading