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

{tools}[foss/2024a] Optuna v4.0.0 #21817

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
50 changes: 50 additions & 0 deletions easybuild/easyconfigs/o/Optuna/Optuna-4.0.0-foss-2024a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
easyblock = 'PythonBundle'

name = 'Optuna'
version = '4.0.0'

homepage = "https://optuna.org/"
description = """Optuna is an automatic hyperparameter optimization software framework,
particularly designed for machine learning. It features an imperative,
define-by-run style user API. Thanks to our define-by-run API, the code written
with Optuna enjoys high modularity, and the user of Optuna can dynamically
construct the search spaces for the hyperparameters."""


toolchain = {'name': 'foss', 'version': '2024a'}

dependencies = [
('Python', '3.12.3'),
('PyYAML', '6.0.2'),
('SciPy-bundle', '2024.05'),
('tqdm', '4.66.5'),
('matplotlib', '3.9.2'), # optional
('plotly.py', '5.24.1'), # optional
('redis-py', '5.1.1'), # optional
('scikit-learn', '1.5.2'), # optional
('SQLAlchemy', '2.0.36'),
]

use_pip = True
sanity_pip_check = True

exts_list = [
('cmaes', '0.11.1', {
'checksums': ['cf71fa3679814723be771f2c9edd85f465b1bc1e409e1ad6d8a9e481efcd5160'],
}),
('colorlog', '6.9.0', {
'checksums': ['bfba54a1b93b94f54e1f4fe48395725a3d92fd2a4af702f6bd70946bdc0c6ac2'],
}),
('%(namelower)s', version, {
'use_pip_extras': 'optional',
'checksums': ['844949f09e2a7353ab414e9cfd783cf0a647a65fc32a7236212ed6a37fe08973'],
}),
]

sanity_check_paths = {
'files': ['bin/optuna'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}
sanity_check_commands = [('optuna', '--help')]

moduleclass = 'tools'
Loading