Skip to content

Commit 604f481

Browse files
authored
Merge pull request #313 from y0z/feature/fix-cmacswm
Add description based on the package abstract
2 parents 9001906 + 777246e commit 604f481

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package/samplers/catcmawm/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
author: Jacob Pfeil
33
title: Optuna Wrap of CatCMA with Margin [Hamano et al. 2025]
4-
description:
4+
description: CatCMA with Margin (CatCMAwM) is a method for mixed-variable optimization problems, simultaneously optimizing continuous, integer, and categorical variables.
55
tags: [sampler, cmaes, mixed-variable optimization]
66
optuna_versions: [4.5.0]
77
license: MIT License
@@ -46,11 +46,11 @@ def objective(trial: optuna.Trial) -> float:
4646
np.array([z1, z2]).reshape(-1, 1),
4747
np.array([c1, c2]).reshape(-1, 1),
4848
)
49-
50-
49+
50+
5151
module = optunahub.load_module(
5252
package="samplers/catcmawm",
53-
)
53+
)
5454

5555
study = optuna.create_study(sampler=module.CatCmawmSampler())
5656
study.optimize(objective, n_trials=20)

0 commit comments

Comments
 (0)