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
4 changes: 2 additions & 2 deletions doc/rtd/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'MLPro Documentations'
copyright = '2024 South Westphalia University of Applied Sciences, Germany'
copyright = '2025 South Westphalia University of Applied Sciences, Germany'
author = 'Detlef Arend, Steve Yuwono, Laxmikant Shrikant Baheti et al'

# The full version, including alpha/beta/rc tags
release = '1.0.1'
release = '1.0.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion doc/rtd/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mlpro[full]>=1.4.0
mlpro[full]>=2.1.0
hyperopt>=0.2.7
setuptools>=80.3.1

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mlpro[full] >= 1.4.0
mlpro[full] >= 2.1.0
hyperopt >= 0.2.7
setuptools >= 80.3.1
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = mlpro_int_hyperopt
version = 1.0.1
version = 1.0.2
author = MLPro Team
author_email = mlpro@listen.fh-swf.de
description = MLPro: Integration Hyperopt
Expand All @@ -18,14 +18,14 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >=3.10
python_requires = >=3.11
include_package_data = True

[options.packages.find]
where = src

[options.extras_require]
full =
mlpro[full] >= 1.4.0
mlpro[full] >= 2.1.0
hyperopt >= 0.2.7
setuptools >= 80.3.1
2 changes: 1 addition & 1 deletion src/mlpro_int_hyperopt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from mlpro_int_hyperopt.wrappers.hyperopt import *
from .wrappers import *
2 changes: 1 addition & 1 deletion src/mlpro_int_hyperopt/wrappers/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from mlpro_int_hyperopt.wrappers.hyperopt import *
from .hyperopt import *
11 changes: 9 additions & 2 deletions src/mlpro_int_hyperopt/wrappers/hyperopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
## -- 2023-04-12 1.1.2 SY Refactoring
## -- 2024-02-01 2.0.0 LSB Migrated to the new repository
## -- 2024-04-18 2.1.0 DA Assignment with MLPro v1.4.0
## -- 2025-08-03 2.1.1 SY Refactoring
## -------------------------------------------------------------------------------------------------

"""
Ver. 2.1.0 (2024-04-18)
Ver. 2.1.1 (2025-08-03)

This module provides a wrapper class for hyperparameter tuning by reusing the Hyperopt framework.

Expand All @@ -35,10 +36,16 @@
from mlpro.wrappers import Wrapper
from mlpro.bf.ml import *
from mlpro.bf.math import *
from mlpro.bf.data import *
from mlpro.bf import *
from mlpro.bf.various import *
from mlpro.rl.models import *
from mlpro.rl import *
from mlpro.gt.dynamicgames import *
import os
import numpy as np

# Export list for public API
__all__ = ['WrHPTHyperopt']


## -------------------------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


setup(name='mlpro_int_hyperopt',
version='1.0.1',
version='1.0.2',
description='MLPro: Integration Hyperopt',
author='MLPro Team',
author_mail='mlpro@listen.fh-swf.de',
Expand All @@ -12,7 +12,7 @@
# Package dependencies for full installation
extras_require={
"full": [
"mlpro>=1.4.0",
"mlpro>=2.1.0",
"hyperopt>=0.2.7",
"setuptools >= 80.3.1"
],
Expand Down
6 changes: 6 additions & 0 deletions test/howtos/rl/howto_rl_ht_001_hyperopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@
from mlpro_int_hyperopt import WrHPTHyperopt
from mlpro.rl.pool.envs.bglp import BGLP
from mlpro.rl import *
from mlpro.bf import *
from mlpro.bf.math import *
from mlpro.bf.systems import *
from mlpro.bf.plot import *
from mlpro.bf.ml import *
import random
import numpy as np
from pathlib import Path


Expand Down
2 changes: 1 addition & 1 deletion test/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

import sys
import os
from mlpro.bf.various import Log
from mlpro.bf import *
import runpy
import pytest

Expand Down
Loading