Skip to content

Commit

Permalink
Update copyright from 2022 to 2025, update institution name (#1196)
Browse files Browse the repository at this point in the history
  • Loading branch information
lhennig0103 authored Jan 15, 2025
1 parent 715d857 commit 7386fcb
Show file tree
Hide file tree
Showing 118 changed files with 118 additions and 118 deletions.
2 changes: 1 addition & 1 deletion examples/1_basics/1_quadratic_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from smac.facade.hyperparameter_optimization_facade import HyperparameterOptimizationFacade as HPOFacade
from smac import RunHistory, Scenario

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/1_basics/2_svm_cv.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from smac import HyperparameterOptimizationFacade, Scenario

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/1_basics/3_ask_and_tell.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from smac import HyperparameterOptimizationFacade, Scenario
from smac.runhistory.dataclasses import TrialValue

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/1_basics/4_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from smac import Scenario
from smac.runhistory import TrialInfo, TrialValue

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/1_basics/5_continue.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from smac.main.smbo import SMBO
from smac.runhistory import TrialInfo, TrialValue

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/1_basics/6_priors.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from smac import HyperparameterOptimizationFacade, Scenario
from smac.acquisition.function import PriorAcquisitionFunction

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/1_basics/7_parallelization_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

from smac import BlackBoxFacade, Scenario

__copyright__ = "Copyright 2023, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/2_multi_fidelity/1_mlp_epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from smac.intensifier.hyperband import Hyperband
from smac.intensifier.successive_halving import SuccessiveHalving

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/2_multi_fidelity/2_sgd_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from smac import MultiFidelityFacade as MFFacade
from smac import Scenario

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/2_multi_fidelity/3_specify_HB_via_total_budget.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from smac import MultiFidelityFacade, RunHistory, Scenario
from smac.intensifier.hyperband_utils import get_n_trials_for_hyperband_multifidelity

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/3_multi_objective/1_schaffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from smac import Scenario
from smac.facade import AbstractFacade

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/3_multi_objective/2_parego.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from smac.facade.abstract_facade import AbstractFacade
from smac.multi_objective.parego import ParEGO

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion examples/4_advanced_optimizer/3_metadata_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from smac import Scenario
from smac.callback.metadata_callback import MetadataCallback

__copyright__ = "Copyright 2023, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
of a configuration is expensive, e.g., if we have to train a neural network or if we have to
evaluate the configuration on a large dataset.
"""
__copyright__ = "Copyright 2023, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

N_FOLDS = 10 # Global variable that determines the number of folds
Expand Down
2 changes: 1 addition & 1 deletion examples/5_commandline/1_call_target_function_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

from smac import BlackBoxFacade, Scenario

__copyright__ = "Copyright 2021, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion scripts/update_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def check(file: str) -> None:
if filename == "smac/__init__.py":
continue

replace_if_starts_with(filename, "__copyright__ =", '__copyright__ = "Copyright 2022, automl.org"')
replace_if_starts_with(filename, "__copyright__ =", '__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"')
replace_if_starts_with(filename, "__author__ =")
replace_if_starts_with(filename, "__maintainer__ =")
replace_if_starts_with(filename, "__version__ =")
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/abstract_acquisition_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from smac.utils.configspace import convert_configurations_to_array
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/confidence_bound.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
)
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/expected_improvement.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
)
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from smac.model.abstract_model import AbstractModel
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/prior_acquisition_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from smac.model.random_forest.abstract_random_forest import AbstractRandomForest
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/probability_improvement.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
)
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/thompson.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from smac.random_design.abstract_random_design import AbstractRandomDesign
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/maximizer/differential_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from smac.acquisition.maximizer import AbstractAcquisitionMaximizer
from smac.utils.configspace import transform_continuous_designs

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/maximizer/local_and_random_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from smac.acquisition.maximizer.random_search import RandomSearch
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/maximizer/local_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
)
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/maximizer/random_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/callback/callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import smac
from smac.runhistory import TrialInfo, TrialValue

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/callback/metadata_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from smac.main.smbo import SMBO
from smac.utils.numpyencoder import NumpyEncoder

__copyright__ = "Copyright 2023, AutoML.org Freiburg-Hannover"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Constants used in SMAC, e.g. maximum number of cutoffs, very small number, etc."""
__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/abstract_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

logger = get_logger(__name__)

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/algorithm_configuration_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from smac.scenario import Scenario
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/blackbox_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from smac.scenario import Scenario
from smac.utils.configspace import get_types

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/hyperband_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from smac.intensifier.hyperband import Hyperband
from smac.scenario import Scenario

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/hyperparameter_optimization_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from smac.runhistory.encoder.log_scaled_encoder import RunHistoryLogScaledEncoder
from smac.scenario import Scenario

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/multi_fidelity_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from smac.intensifier.hyperband import Hyperband
from smac.scenario import Scenario

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/facade/random_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from smac.runhistory.encoder.encoder import RunHistoryEncoder
from smac.scenario import Scenario

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/initial_design/abstract_initial_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from smac.scenario import Scenario
from smac.utils.logging import get_logger

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"

logger = get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion smac/initial_design/default_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from smac.initial_design.abstract_initial_design import AbstractInitialDesign

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/initial_design/factorial_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from smac.initial_design.abstract_initial_design import AbstractInitialDesign

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/initial_design/latin_hypercube_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from smac.initial_design.abstract_initial_design import AbstractInitialDesign
from smac.utils.configspace import transform_continuous_designs

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/initial_design/random_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from smac.initial_design.abstract_initial_design import AbstractInitialDesign

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
2 changes: 1 addition & 1 deletion smac/initial_design/sobol_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from smac.initial_design.abstract_initial_design import AbstractInitialDesign
from smac.utils.configspace import transform_continuous_designs

__copyright__ = "Copyright 2022, automl.org"
__copyright__ = "Copyright 2025, Leibniz University Hanover, Institute of AI"
__license__ = "3-clause BSD"


Expand Down
Loading

0 comments on commit 7386fcb

Please sign in to comment.