From c293523c03e1a3df81857abe637b197fb4c6e74c Mon Sep 17 00:00:00 2001 From: Xingyou Song Date: Tue, 3 Jan 2023 07:17:52 -0800 Subject: [PATCH] Update to 0.0.17 PiperOrigin-RevId: 499210578 --- README.md | 1 + build_protos.sh | 2 +- demos/run_vizier_client.py | 2 +- demos/run_vizier_server.py | 2 +- docs/conf.py | 2 +- docs/generate_docs.sh | 2 +- run_tests.sh | 2 +- setup.py | 2 +- vizier/__init__.py | 4 ++-- vizier/_src/__init__.py | 2 +- vizier/_src/algorithms/__init__.py | 2 +- vizier/_src/algorithms/classification/classifiers.py | 2 +- vizier/_src/algorithms/classification/classifiers_test.py | 2 +- vizier/_src/algorithms/core/__init__.py | 2 +- vizier/_src/algorithms/core/abstractions.py | 2 +- vizier/_src/algorithms/designers/__init__.py | 2 +- vizier/_src/algorithms/designers/bocs.py | 2 +- vizier/_src/algorithms/designers/bocs_test.py | 2 +- vizier/_src/algorithms/designers/cmaes.py | 2 +- vizier/_src/algorithms/designers/cmaes_test.py | 2 +- .../eagle_strategy/eagle_designer_convergence_test.py | 2 +- .../algorithms/designers/eagle_strategy/eagle_strategy.py | 2 +- .../designers/eagle_strategy/eagle_strategy_test.py | 2 +- .../designers/eagle_strategy/eagle_strategy_utils.py | 2 +- .../designers/eagle_strategy/eagle_strategy_utils_test.py | 2 +- .../_src/algorithms/designers/eagle_strategy/serialization.py | 2 +- .../algorithms/designers/eagle_strategy/serialization_test.py | 2 +- vizier/_src/algorithms/designers/eagle_strategy/testing.py | 2 +- vizier/_src/algorithms/designers/emukit.py | 2 +- vizier/_src/algorithms/designers/emukit_test.py | 2 +- vizier/_src/algorithms/designers/gp/output_warpers.py | 2 +- vizier/_src/algorithms/designers/gp/output_warpers_test.py | 2 +- vizier/_src/algorithms/designers/gp/yjt.py | 2 +- vizier/_src/algorithms/designers/grid.py | 2 +- vizier/_src/algorithms/designers/grid_test.py | 2 +- vizier/_src/algorithms/designers/harmonica.py | 2 +- vizier/_src/algorithms/designers/harmonica_test.py | 2 +- vizier/_src/algorithms/designers/quasi_random.py | 2 +- vizier/_src/algorithms/designers/quasi_random_test.py | 2 +- vizier/_src/algorithms/designers/random.py | 2 +- vizier/_src/algorithms/designers/random_test.py | 2 +- vizier/_src/algorithms/evolution/__init__.py | 2 +- vizier/_src/algorithms/evolution/nsga2.py | 2 +- vizier/_src/algorithms/evolution/nsga2_test.py | 2 +- vizier/_src/algorithms/evolution/numpy_populations.py | 2 +- vizier/_src/algorithms/evolution/numpy_populations_test.py | 2 +- vizier/_src/algorithms/evolution/templates.py | 2 +- vizier/_src/algorithms/optimizers/__init__.py | 2 +- vizier/_src/algorithms/optimizers/base.py | 2 +- vizier/_src/algorithms/optimizers/designer_optimizer.py | 2 +- vizier/_src/algorithms/optimizers/designer_optimizer_test.py | 2 +- .../algorithms/optimizers/eagle_optimizer_convergence_test.py | 2 +- vizier/_src/algorithms/optimizers/eagle_param_handler.py | 2 +- vizier/_src/algorithms/optimizers/eagle_strategy.py | 2 +- vizier/_src/algorithms/optimizers/eagle_strategy_test.py | 2 +- .../_src/algorithms/optimizers/random_vectorized_optimizer.py | 2 +- .../algorithms/optimizers/random_vectorized_optimizer_test.py | 2 +- vizier/_src/algorithms/optimizers/vectorized_base.py | 2 +- vizier/_src/algorithms/optimizers/vectorized_base_test.py | 2 +- vizier/_src/algorithms/policies/__init__.py | 2 +- vizier/_src/algorithms/policies/designer_policy.py | 4 ++-- vizier/_src/algorithms/policies/designer_policy_test.py | 2 +- vizier/_src/algorithms/policies/random_policy.py | 2 +- vizier/_src/algorithms/policies/random_policy_test.py | 2 +- vizier/_src/algorithms/random/random_sample.py | 2 +- vizier/_src/algorithms/random/random_sample_test.py | 2 +- vizier/_src/algorithms/regression/trial_regression_utils.py | 2 +- .../_src/algorithms/regression/trial_regression_utils_test.py | 2 +- vizier/_src/algorithms/testing/__init__.py | 2 +- vizier/_src/algorithms/testing/comparator_runner.py | 2 +- vizier/_src/algorithms/testing/comparator_runner_test.py | 2 +- vizier/_src/algorithms/testing/optimizer_test_utils.py | 2 +- vizier/_src/algorithms/testing/test_runners.py | 2 +- vizier/_src/benchmarks/analyzers/convergence_curve.py | 2 +- vizier/_src/benchmarks/analyzers/convergence_curve_test.py | 2 +- vizier/_src/benchmarks/analyzers/simple_regret_score.py | 2 +- vizier/_src/benchmarks/analyzers/simple_regret_score_test.py | 2 +- .../_src/benchmarks/experimenters/atari100k_configs/DER.gin | 2 +- .../_src/benchmarks/experimenters/atari100k_configs/DrQ.gin | 2 +- .../benchmarks/experimenters/atari100k_configs/DrQ_eps.gin | 2 +- .../benchmarks/experimenters/atari100k_configs/OTRainbow.gin | 2 +- .../_src/benchmarks/experimenters/atari100k_experimenter.py | 2 +- .../benchmarks/experimenters/atari100k_experimenter_test.py | 2 +- vizier/_src/benchmarks/experimenters/combo/common.py | 2 +- vizier/_src/benchmarks/experimenters/combo_experimenter.py | 2 +- .../_src/benchmarks/experimenters/combo_experimenter_test.py | 2 +- .../benchmarks/experimenters/discretizing_experimenter.py | 2 +- .../experimenters/discretizing_experimenter_test.py | 2 +- vizier/_src/benchmarks/experimenters/experimenter.py | 2 +- vizier/_src/benchmarks/experimenters/experimenter_factory.py | 2 +- .../benchmarks/experimenters/experimenter_factory_test.py | 2 +- vizier/_src/benchmarks/experimenters/hpob/handler.py | 2 +- vizier/_src/benchmarks/experimenters/hpob_experimenter.py | 2 +- .../_src/benchmarks/experimenters/hpob_experimenter_test.py | 2 +- .../benchmarks/experimenters/l1_categorical_experimenter.py | 2 +- .../experimenters/l1_categorical_experimenter_test.py | 2 +- .../_src/benchmarks/experimenters/nasbench101_experimenter.py | 2 +- .../benchmarks/experimenters/nasbench101_experimenter_test.py | 2 +- .../_src/benchmarks/experimenters/nasbench201_experimenter.py | 2 +- .../benchmarks/experimenters/nasbench201_experimenter_test.py | 2 +- vizier/_src/benchmarks/experimenters/noisy_experimenter.py | 2 +- .../_src/benchmarks/experimenters/noisy_experimenter_test.py | 2 +- vizier/_src/benchmarks/experimenters/numpy_experimenter.py | 2 +- .../_src/benchmarks/experimenters/numpy_experimenter_test.py | 2 +- vizier/_src/benchmarks/experimenters/shifting_experimenter.py | 2 +- .../benchmarks/experimenters/shifting_experimenter_test.py | 2 +- vizier/_src/benchmarks/experimenters/synthetic/bbob.py | 2 +- vizier/_src/benchmarks/runners/algorithm_suggester.py | 2 +- vizier/_src/benchmarks/runners/benchmark_runner.py | 2 +- vizier/_src/benchmarks/runners/benchmark_runner_test.py | 2 +- vizier/_src/pythia/local_policy_supporters.py | 2 +- vizier/_src/pythia/local_policy_supporters_test.py | 2 +- vizier/_src/pythia/policy.py | 2 +- vizier/_src/pythia/policy_supporter.py | 2 +- vizier/_src/pythia/pythia_errors.py | 2 +- vizier/_src/pyvizier/multimetric/hypervolume.py | 2 +- vizier/_src/pyvizier/multimetric/hypervolume_test.py | 2 +- vizier/_src/pyvizier/multimetric/pareto_optimal.py | 2 +- vizier/_src/pyvizier/multimetric/pareto_optimal_test.py | 2 +- vizier/_src/pyvizier/multimetric/safety.py | 2 +- vizier/_src/pyvizier/multimetric/safety_test.py | 2 +- vizier/_src/pyvizier/oss/automated_stopping.py | 2 +- vizier/_src/pyvizier/oss/automated_stopping_test.py | 2 +- vizier/_src/pyvizier/oss/compare.py | 2 +- vizier/_src/pyvizier/oss/metadata_util.py | 2 +- vizier/_src/pyvizier/oss/metadata_util_test.py | 2 +- vizier/_src/pyvizier/oss/proto_converters.py | 2 +- vizier/_src/pyvizier/oss/proto_converters_test.py | 2 +- vizier/_src/pyvizier/oss/study_config.py | 2 +- vizier/_src/pyvizier/oss/study_config_test.py | 2 +- vizier/_src/pyvizier/pythia/study.py | 2 +- vizier/_src/pyvizier/shared/base_study_config.py | 2 +- vizier/_src/pyvizier/shared/base_study_config_test.py | 2 +- vizier/_src/pyvizier/shared/common.py | 2 +- vizier/_src/pyvizier/shared/common_test.py | 2 +- vizier/_src/pyvizier/shared/context.py | 2 +- vizier/_src/pyvizier/shared/context_test.py | 2 +- vizier/_src/pyvizier/shared/parameter_config.py | 2 +- vizier/_src/pyvizier/shared/parameter_config_test.py | 2 +- vizier/_src/pyvizier/shared/parameter_iterators.py | 2 +- vizier/_src/pyvizier/shared/parameter_iterators_test.py | 2 +- vizier/_src/pyvizier/shared/study.py | 2 +- vizier/_src/pyvizier/shared/trial.py | 2 +- vizier/_src/pyvizier/shared/trial_test.py | 2 +- vizier/algorithms/__init__.py | 2 +- vizier/benchmarks/__init__.py | 2 +- vizier/benchmarks/hpo/__init__.py | 2 +- vizier/benchmarks/nas/__init__.py | 2 +- vizier/benchmarks/rl/__init__.py | 2 +- vizier/client/__init__.py | 2 +- vizier/client/client_abc.py | 2 +- vizier/client/client_abc_testing.py | 2 +- vizier/interfaces/__init__.py | 2 +- vizier/interfaces/serializable.py | 2 +- vizier/pythia.py | 2 +- vizier/pyvizier/__init__.py | 2 +- vizier/pyvizier/converters/__init__.py | 2 +- vizier/pyvizier/converters/core.py | 2 +- vizier/pyvizier/converters/core_test.py | 2 +- vizier/pyvizier/converters/spatio_temporal.py | 2 +- vizier/pyvizier/converters/spatio_temporal_test.py | 2 +- vizier/pyvizier/multimetric/__init__.py | 2 +- vizier/pyvizier/multimetric/xla_pareto.py | 2 +- vizier/service/__init__.py | 2 +- vizier/service/clients.py | 2 +- vizier/service/clients_test.py | 2 +- vizier/service/datastore.py | 2 +- vizier/service/datastore_test.py | 2 +- vizier/service/datastore_test_lib.py | 2 +- vizier/service/performance_test.py | 2 +- vizier/service/pythia_server.py | 2 +- vizier/service/pythia_util.py | 2 +- vizier/service/pyvizier/__init__.py | 2 +- vizier/service/resources.py | 2 +- vizier/service/resources_test.py | 2 +- vizier/service/service_policy_supporter.py | 2 +- vizier/service/service_policy_supporter_test.py | 2 +- vizier/service/sql_datastore.py | 2 +- vizier/service/sql_datastore_test.py | 2 +- vizier/service/stubs_util.py | 2 +- vizier/service/testing/util.py | 2 +- vizier/service/vizier_client.py | 2 +- vizier/service/vizier_client_test.py | 2 +- vizier/service/vizier_server.py | 2 +- vizier/service/vizier_server_test.py | 2 +- vizier/service/vizier_service.py | 2 +- vizier/service/vizier_service_test.py | 2 +- vizier/testing/__init__.py | 2 +- vizier/testing/test_studies.py | 2 +- vizier/utils/attrs_utils.py | 2 +- vizier/utils/attrs_utils_test.py | 2 +- vizier/utils/json_utils.py | 2 +- vizier/utils/json_utils_test.py | 2 +- 193 files changed, 195 insertions(+), 194 deletions(-) diff --git a/README.md b/README.md index bbe6c6d2a..b783c60ea 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ [![PyPI version](https://badge.fury.io/py/google-vizier.svg)](https://badge.fury.io/py/google-vizier) ![Continuous Integration (Core)](https://github.com/google/vizier/workflows/pytest_core/badge.svg) +![Continuous Integration (Clients)](https://github.com/google/vizier/workflows/pytest_clients/badge.svg) ![Continuous Integration (Algorithms)](https://github.com/google/vizier/workflows/pytest_algorithms/badge.svg) ![Continuous Integration (Benchmarks)](https://github.com/google/vizier/workflows/pytest_benchmarks/badge.svg) ![Continuous Integration (Docs)](https://github.com/google/vizier/workflows/docs/badge.svg) diff --git a/build_protos.sh b/build_protos.sh index 079b82c14..ab4cdc5a4 100755 --- a/build_protos.sh +++ b/build_protos.sh @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/demos/run_vizier_client.py b/demos/run_vizier_client.py index f4573bf17..717db7fbf 100644 --- a/demos/run_vizier_client.py +++ b/demos/run_vizier_client.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/demos/run_vizier_server.py b/demos/run_vizier_server.py index da80d9d9f..b96ac694d 100644 --- a/demos/run_vizier_server.py +++ b/demos/run_vizier_server.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/docs/conf.py b/docs/conf.py index 885a09d6a..358947f06 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/docs/generate_docs.sh b/docs/generate_docs.sh index 88908497f..8489b58be 100755 --- a/docs/generate_docs.sh +++ b/docs/generate_docs.sh @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/run_tests.sh b/run_tests.sh index 03905025d..7024b9f14 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index ba3b5bec0..6f3cca04f 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/__init__.py b/vizier/__init__.py index b2daafac5..a50a9abb6 100644 --- a/vizier/__init__.py +++ b/vizier/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -23,4 +23,4 @@ sys.path.append(PROTO_ROOT) -__version__ = "0.0.16" +__version__ = "0.0.17" diff --git a/vizier/_src/__init__.py b/vizier/_src/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/_src/__init__.py +++ b/vizier/_src/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/__init__.py b/vizier/_src/algorithms/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/_src/algorithms/__init__.py +++ b/vizier/_src/algorithms/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/classification/classifiers.py b/vizier/_src/algorithms/classification/classifiers.py index 087c2515c..1906812e1 100644 --- a/vizier/_src/algorithms/classification/classifiers.py +++ b/vizier/_src/algorithms/classification/classifiers.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/classification/classifiers_test.py b/vizier/_src/algorithms/classification/classifiers_test.py index 929cedce5..c5a436b98 100644 --- a/vizier/_src/algorithms/classification/classifiers_test.py +++ b/vizier/_src/algorithms/classification/classifiers_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/core/__init__.py b/vizier/_src/algorithms/core/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/_src/algorithms/core/__init__.py +++ b/vizier/_src/algorithms/core/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/core/abstractions.py b/vizier/_src/algorithms/core/abstractions.py index 0f36057b8..06e1bdbb6 100644 --- a/vizier/_src/algorithms/core/abstractions.py +++ b/vizier/_src/algorithms/core/abstractions.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/__init__.py b/vizier/_src/algorithms/designers/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/_src/algorithms/designers/__init__.py +++ b/vizier/_src/algorithms/designers/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/bocs.py b/vizier/_src/algorithms/designers/bocs.py index ad931b620..6a67747b2 100644 --- a/vizier/_src/algorithms/designers/bocs.py +++ b/vizier/_src/algorithms/designers/bocs.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/bocs_test.py b/vizier/_src/algorithms/designers/bocs_test.py index 9da55eacc..c7f52caf7 100644 --- a/vizier/_src/algorithms/designers/bocs_test.py +++ b/vizier/_src/algorithms/designers/bocs_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/cmaes.py b/vizier/_src/algorithms/designers/cmaes.py index 7bc99d364..15f6fd694 100644 --- a/vizier/_src/algorithms/designers/cmaes.py +++ b/vizier/_src/algorithms/designers/cmaes.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/cmaes_test.py b/vizier/_src/algorithms/designers/cmaes_test.py index e5f359e2b..cc1f82325 100644 --- a/vizier/_src/algorithms/designers/cmaes_test.py +++ b/vizier/_src/algorithms/designers/cmaes_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/eagle_designer_convergence_test.py b/vizier/_src/algorithms/designers/eagle_strategy/eagle_designer_convergence_test.py index b519ab426..aa983b7ae 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/eagle_designer_convergence_test.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/eagle_designer_convergence_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy.py b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy.py index 9ef5eff12..95e5c076e 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_test.py b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_test.py index 4402e390c..dad6bb441 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_test.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils.py b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils.py index c94d3fc7f..25c3bb032 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils_test.py b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils_test.py index 9b222fa7b..8fc9ce682 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils_test.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/eagle_strategy_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/serialization.py b/vizier/_src/algorithms/designers/eagle_strategy/serialization.py index df0c9417b..3b07ed59f 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/serialization.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/serialization.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/serialization_test.py b/vizier/_src/algorithms/designers/eagle_strategy/serialization_test.py index 6e66f9047..01c802b8f 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/serialization_test.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/serialization_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/eagle_strategy/testing.py b/vizier/_src/algorithms/designers/eagle_strategy/testing.py index 4c0b7ce7f..c018d0ffc 100644 --- a/vizier/_src/algorithms/designers/eagle_strategy/testing.py +++ b/vizier/_src/algorithms/designers/eagle_strategy/testing.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/emukit.py b/vizier/_src/algorithms/designers/emukit.py index f9bce8b64..6846cb2b0 100644 --- a/vizier/_src/algorithms/designers/emukit.py +++ b/vizier/_src/algorithms/designers/emukit.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/emukit_test.py b/vizier/_src/algorithms/designers/emukit_test.py index db013c5c1..cc181465f 100644 --- a/vizier/_src/algorithms/designers/emukit_test.py +++ b/vizier/_src/algorithms/designers/emukit_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/gp/output_warpers.py b/vizier/_src/algorithms/designers/gp/output_warpers.py index 4df383c04..1c60cf21e 100644 --- a/vizier/_src/algorithms/designers/gp/output_warpers.py +++ b/vizier/_src/algorithms/designers/gp/output_warpers.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/gp/output_warpers_test.py b/vizier/_src/algorithms/designers/gp/output_warpers_test.py index a9a2f4bca..ac7f1ac3b 100644 --- a/vizier/_src/algorithms/designers/gp/output_warpers_test.py +++ b/vizier/_src/algorithms/designers/gp/output_warpers_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/gp/yjt.py b/vizier/_src/algorithms/designers/gp/yjt.py index f83eb4a9b..9ec71d6e9 100644 --- a/vizier/_src/algorithms/designers/gp/yjt.py +++ b/vizier/_src/algorithms/designers/gp/yjt.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/grid.py b/vizier/_src/algorithms/designers/grid.py index 17fe000a6..9810e7fd7 100644 --- a/vizier/_src/algorithms/designers/grid.py +++ b/vizier/_src/algorithms/designers/grid.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/grid_test.py b/vizier/_src/algorithms/designers/grid_test.py index 00f98f7fa..f6305d7b1 100644 --- a/vizier/_src/algorithms/designers/grid_test.py +++ b/vizier/_src/algorithms/designers/grid_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/harmonica.py b/vizier/_src/algorithms/designers/harmonica.py index 3b93f8729..f3a7b7358 100644 --- a/vizier/_src/algorithms/designers/harmonica.py +++ b/vizier/_src/algorithms/designers/harmonica.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/harmonica_test.py b/vizier/_src/algorithms/designers/harmonica_test.py index 05427cfd1..a3ea384de 100644 --- a/vizier/_src/algorithms/designers/harmonica_test.py +++ b/vizier/_src/algorithms/designers/harmonica_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/quasi_random.py b/vizier/_src/algorithms/designers/quasi_random.py index 66f87ed71..1301210fd 100644 --- a/vizier/_src/algorithms/designers/quasi_random.py +++ b/vizier/_src/algorithms/designers/quasi_random.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/quasi_random_test.py b/vizier/_src/algorithms/designers/quasi_random_test.py index cd411e5b0..3cc5852be 100644 --- a/vizier/_src/algorithms/designers/quasi_random_test.py +++ b/vizier/_src/algorithms/designers/quasi_random_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/random.py b/vizier/_src/algorithms/designers/random.py index 3d0fa91f2..0c2436042 100644 --- a/vizier/_src/algorithms/designers/random.py +++ b/vizier/_src/algorithms/designers/random.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/designers/random_test.py b/vizier/_src/algorithms/designers/random_test.py index 2e481b81a..58f4b7cd1 100644 --- a/vizier/_src/algorithms/designers/random_test.py +++ b/vizier/_src/algorithms/designers/random_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/evolution/__init__.py b/vizier/_src/algorithms/evolution/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/_src/algorithms/evolution/__init__.py +++ b/vizier/_src/algorithms/evolution/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/evolution/nsga2.py b/vizier/_src/algorithms/evolution/nsga2.py index c88b2315b..05821b171 100644 --- a/vizier/_src/algorithms/evolution/nsga2.py +++ b/vizier/_src/algorithms/evolution/nsga2.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/evolution/nsga2_test.py b/vizier/_src/algorithms/evolution/nsga2_test.py index 9871d5dd5..b912a55b9 100644 --- a/vizier/_src/algorithms/evolution/nsga2_test.py +++ b/vizier/_src/algorithms/evolution/nsga2_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/evolution/numpy_populations.py b/vizier/_src/algorithms/evolution/numpy_populations.py index b6a72604e..97ec29731 100644 --- a/vizier/_src/algorithms/evolution/numpy_populations.py +++ b/vizier/_src/algorithms/evolution/numpy_populations.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/evolution/numpy_populations_test.py b/vizier/_src/algorithms/evolution/numpy_populations_test.py index 49d78e317..c00aa2e9d 100644 --- a/vizier/_src/algorithms/evolution/numpy_populations_test.py +++ b/vizier/_src/algorithms/evolution/numpy_populations_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/evolution/templates.py b/vizier/_src/algorithms/evolution/templates.py index e81b50430..956f06202 100644 --- a/vizier/_src/algorithms/evolution/templates.py +++ b/vizier/_src/algorithms/evolution/templates.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/__init__.py b/vizier/_src/algorithms/optimizers/__init__.py index f9dd2db11..5dedd33e6 100644 --- a/vizier/_src/algorithms/optimizers/__init__.py +++ b/vizier/_src/algorithms/optimizers/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/base.py b/vizier/_src/algorithms/optimizers/base.py index a3c9de1ef..c4349eeea 100644 --- a/vizier/_src/algorithms/optimizers/base.py +++ b/vizier/_src/algorithms/optimizers/base.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/designer_optimizer.py b/vizier/_src/algorithms/optimizers/designer_optimizer.py index ecdeab601..99db37617 100644 --- a/vizier/_src/algorithms/optimizers/designer_optimizer.py +++ b/vizier/_src/algorithms/optimizers/designer_optimizer.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/designer_optimizer_test.py b/vizier/_src/algorithms/optimizers/designer_optimizer_test.py index ec4f7c280..b520ed0c7 100644 --- a/vizier/_src/algorithms/optimizers/designer_optimizer_test.py +++ b/vizier/_src/algorithms/optimizers/designer_optimizer_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/eagle_optimizer_convergence_test.py b/vizier/_src/algorithms/optimizers/eagle_optimizer_convergence_test.py index a4d1621eb..20c866e75 100644 --- a/vizier/_src/algorithms/optimizers/eagle_optimizer_convergence_test.py +++ b/vizier/_src/algorithms/optimizers/eagle_optimizer_convergence_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/eagle_param_handler.py b/vizier/_src/algorithms/optimizers/eagle_param_handler.py index 29e79e1db..9a5e639e3 100644 --- a/vizier/_src/algorithms/optimizers/eagle_param_handler.py +++ b/vizier/_src/algorithms/optimizers/eagle_param_handler.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/eagle_strategy.py b/vizier/_src/algorithms/optimizers/eagle_strategy.py index 70909c8a2..f6d5c63b8 100644 --- a/vizier/_src/algorithms/optimizers/eagle_strategy.py +++ b/vizier/_src/algorithms/optimizers/eagle_strategy.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/eagle_strategy_test.py b/vizier/_src/algorithms/optimizers/eagle_strategy_test.py index b7ab1607e..ebdddda39 100644 --- a/vizier/_src/algorithms/optimizers/eagle_strategy_test.py +++ b/vizier/_src/algorithms/optimizers/eagle_strategy_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/random_vectorized_optimizer.py b/vizier/_src/algorithms/optimizers/random_vectorized_optimizer.py index 8a04bec2e..1253f0356 100644 --- a/vizier/_src/algorithms/optimizers/random_vectorized_optimizer.py +++ b/vizier/_src/algorithms/optimizers/random_vectorized_optimizer.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/random_vectorized_optimizer_test.py b/vizier/_src/algorithms/optimizers/random_vectorized_optimizer_test.py index 9cf02d559..e31b4c1df 100644 --- a/vizier/_src/algorithms/optimizers/random_vectorized_optimizer_test.py +++ b/vizier/_src/algorithms/optimizers/random_vectorized_optimizer_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/vectorized_base.py b/vizier/_src/algorithms/optimizers/vectorized_base.py index f7b126aba..1a0a28044 100644 --- a/vizier/_src/algorithms/optimizers/vectorized_base.py +++ b/vizier/_src/algorithms/optimizers/vectorized_base.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/optimizers/vectorized_base_test.py b/vizier/_src/algorithms/optimizers/vectorized_base_test.py index a6f7ef576..1988b1979 100644 --- a/vizier/_src/algorithms/optimizers/vectorized_base_test.py +++ b/vizier/_src/algorithms/optimizers/vectorized_base_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/policies/__init__.py b/vizier/_src/algorithms/policies/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/_src/algorithms/policies/__init__.py +++ b/vizier/_src/algorithms/policies/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/policies/designer_policy.py b/vizier/_src/algorithms/policies/designer_policy.py index 5084b31b5..7ccc72030 100644 --- a/vizier/_src/algorithms/policies/designer_policy.py +++ b/vizier/_src/algorithms/policies/designer_policy.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -131,7 +131,7 @@ def __init__( self._designer = None def suggest(self, request: pythia.SuggestRequest) -> pythia.SuggestDecision: - """Perform a suggest operations. + """Perform a suggest operation. The order of operations is: 1. Initialize the designer and load its state from metadata. diff --git a/vizier/_src/algorithms/policies/designer_policy_test.py b/vizier/_src/algorithms/policies/designer_policy_test.py index b63355555..907272352 100644 --- a/vizier/_src/algorithms/policies/designer_policy_test.py +++ b/vizier/_src/algorithms/policies/designer_policy_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/policies/random_policy.py b/vizier/_src/algorithms/policies/random_policy.py index ab711a71b..b7fd7a371 100644 --- a/vizier/_src/algorithms/policies/random_policy.py +++ b/vizier/_src/algorithms/policies/random_policy.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/policies/random_policy_test.py b/vizier/_src/algorithms/policies/random_policy_test.py index 18529fa59..5204801f0 100644 --- a/vizier/_src/algorithms/policies/random_policy_test.py +++ b/vizier/_src/algorithms/policies/random_policy_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/random/random_sample.py b/vizier/_src/algorithms/random/random_sample.py index 49528e312..dc90a096a 100644 --- a/vizier/_src/algorithms/random/random_sample.py +++ b/vizier/_src/algorithms/random/random_sample.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/random/random_sample_test.py b/vizier/_src/algorithms/random/random_sample_test.py index f2ee6d008..90409fe36 100644 --- a/vizier/_src/algorithms/random/random_sample_test.py +++ b/vizier/_src/algorithms/random/random_sample_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/regression/trial_regression_utils.py b/vizier/_src/algorithms/regression/trial_regression_utils.py index 63ed8e286..01db875bd 100644 --- a/vizier/_src/algorithms/regression/trial_regression_utils.py +++ b/vizier/_src/algorithms/regression/trial_regression_utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/regression/trial_regression_utils_test.py b/vizier/_src/algorithms/regression/trial_regression_utils_test.py index b07ebff18..8a3ef2730 100644 --- a/vizier/_src/algorithms/regression/trial_regression_utils_test.py +++ b/vizier/_src/algorithms/regression/trial_regression_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/testing/__init__.py b/vizier/_src/algorithms/testing/__init__.py index 880d334b9..5ffaacae5 100644 --- a/vizier/_src/algorithms/testing/__init__.py +++ b/vizier/_src/algorithms/testing/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/testing/comparator_runner.py b/vizier/_src/algorithms/testing/comparator_runner.py index 0ddc47c10..349095c90 100644 --- a/vizier/_src/algorithms/testing/comparator_runner.py +++ b/vizier/_src/algorithms/testing/comparator_runner.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/testing/comparator_runner_test.py b/vizier/_src/algorithms/testing/comparator_runner_test.py index 7f41898ff..db1dcfd00 100644 --- a/vizier/_src/algorithms/testing/comparator_runner_test.py +++ b/vizier/_src/algorithms/testing/comparator_runner_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/testing/optimizer_test_utils.py b/vizier/_src/algorithms/testing/optimizer_test_utils.py index 79aba6eca..ebff693b8 100644 --- a/vizier/_src/algorithms/testing/optimizer_test_utils.py +++ b/vizier/_src/algorithms/testing/optimizer_test_utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/algorithms/testing/test_runners.py b/vizier/_src/algorithms/testing/test_runners.py index a8b038aae..32b3e4dc2 100644 --- a/vizier/_src/algorithms/testing/test_runners.py +++ b/vizier/_src/algorithms/testing/test_runners.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/analyzers/convergence_curve.py b/vizier/_src/benchmarks/analyzers/convergence_curve.py index b21ccc7d5..0c2c35680 100644 --- a/vizier/_src/benchmarks/analyzers/convergence_curve.py +++ b/vizier/_src/benchmarks/analyzers/convergence_curve.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/analyzers/convergence_curve_test.py b/vizier/_src/benchmarks/analyzers/convergence_curve_test.py index 41bcb5bbc..a41c25184 100644 --- a/vizier/_src/benchmarks/analyzers/convergence_curve_test.py +++ b/vizier/_src/benchmarks/analyzers/convergence_curve_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/analyzers/simple_regret_score.py b/vizier/_src/benchmarks/analyzers/simple_regret_score.py index bf524e4f6..3af754be5 100644 --- a/vizier/_src/benchmarks/analyzers/simple_regret_score.py +++ b/vizier/_src/benchmarks/analyzers/simple_regret_score.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/analyzers/simple_regret_score_test.py b/vizier/_src/benchmarks/analyzers/simple_regret_score_test.py index bc955769c..0fe3d3c37 100644 --- a/vizier/_src/benchmarks/analyzers/simple_regret_score_test.py +++ b/vizier/_src/benchmarks/analyzers/simple_regret_score_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/atari100k_configs/DER.gin b/vizier/_src/benchmarks/experimenters/atari100k_configs/DER.gin index 10e8e716a..2e1c7ebac 100644 --- a/vizier/_src/benchmarks/experimenters/atari100k_configs/DER.gin +++ b/vizier/_src/benchmarks/experimenters/atari100k_configs/DER.gin @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ.gin b/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ.gin index 11aa5bbdc..f2d371e4c 100644 --- a/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ.gin +++ b/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ.gin @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ_eps.gin b/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ_eps.gin index f19d19338..1f34a1305 100644 --- a/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ_eps.gin +++ b/vizier/_src/benchmarks/experimenters/atari100k_configs/DrQ_eps.gin @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/atari100k_configs/OTRainbow.gin b/vizier/_src/benchmarks/experimenters/atari100k_configs/OTRainbow.gin index a7ea2fed7..5eec832de 100644 --- a/vizier/_src/benchmarks/experimenters/atari100k_configs/OTRainbow.gin +++ b/vizier/_src/benchmarks/experimenters/atari100k_configs/OTRainbow.gin @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/atari100k_experimenter.py b/vizier/_src/benchmarks/experimenters/atari100k_experimenter.py index c901d11b6..219492788 100644 --- a/vizier/_src/benchmarks/experimenters/atari100k_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/atari100k_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/atari100k_experimenter_test.py b/vizier/_src/benchmarks/experimenters/atari100k_experimenter_test.py index 4926a7145..37d2e7cf9 100644 --- a/vizier/_src/benchmarks/experimenters/atari100k_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/atari100k_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/combo/common.py b/vizier/_src/benchmarks/experimenters/combo/common.py index d87cd590e..0b0cc3be7 100644 --- a/vizier/_src/benchmarks/experimenters/combo/common.py +++ b/vizier/_src/benchmarks/experimenters/combo/common.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/combo_experimenter.py b/vizier/_src/benchmarks/experimenters/combo_experimenter.py index 05a56cb99..d021c8117 100644 --- a/vizier/_src/benchmarks/experimenters/combo_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/combo_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/combo_experimenter_test.py b/vizier/_src/benchmarks/experimenters/combo_experimenter_test.py index f328d3ecb..0a3e08c46 100644 --- a/vizier/_src/benchmarks/experimenters/combo_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/combo_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/discretizing_experimenter.py b/vizier/_src/benchmarks/experimenters/discretizing_experimenter.py index c618738c0..c6f5cd187 100644 --- a/vizier/_src/benchmarks/experimenters/discretizing_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/discretizing_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/discretizing_experimenter_test.py b/vizier/_src/benchmarks/experimenters/discretizing_experimenter_test.py index 55398c26a..ca78b9fcc 100644 --- a/vizier/_src/benchmarks/experimenters/discretizing_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/discretizing_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/experimenter.py b/vizier/_src/benchmarks/experimenters/experimenter.py index d480c3233..99e8a43b5 100644 --- a/vizier/_src/benchmarks/experimenters/experimenter.py +++ b/vizier/_src/benchmarks/experimenters/experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/experimenter_factory.py b/vizier/_src/benchmarks/experimenters/experimenter_factory.py index 266d1f4aa..5b23904b3 100644 --- a/vizier/_src/benchmarks/experimenters/experimenter_factory.py +++ b/vizier/_src/benchmarks/experimenters/experimenter_factory.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/experimenter_factory_test.py b/vizier/_src/benchmarks/experimenters/experimenter_factory_test.py index f484eaf32..c4be0d288 100644 --- a/vizier/_src/benchmarks/experimenters/experimenter_factory_test.py +++ b/vizier/_src/benchmarks/experimenters/experimenter_factory_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/hpob/handler.py b/vizier/_src/benchmarks/experimenters/hpob/handler.py index 4aa84774a..9c3426fbd 100644 --- a/vizier/_src/benchmarks/experimenters/hpob/handler.py +++ b/vizier/_src/benchmarks/experimenters/hpob/handler.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/hpob_experimenter.py b/vizier/_src/benchmarks/experimenters/hpob_experimenter.py index 051741129..4cd37c02c 100644 --- a/vizier/_src/benchmarks/experimenters/hpob_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/hpob_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/hpob_experimenter_test.py b/vizier/_src/benchmarks/experimenters/hpob_experimenter_test.py index 6803b7be7..3641d9e1f 100644 --- a/vizier/_src/benchmarks/experimenters/hpob_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/hpob_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter.py b/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter.py index cabba4ac3..9ef363c1f 100644 --- a/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter_test.py b/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter_test.py index 48c8eb1ab..9f6eb6a36 100644 --- a/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/l1_categorical_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/nasbench101_experimenter.py b/vizier/_src/benchmarks/experimenters/nasbench101_experimenter.py index 6e83b67a2..039e7db97 100644 --- a/vizier/_src/benchmarks/experimenters/nasbench101_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/nasbench101_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/nasbench101_experimenter_test.py b/vizier/_src/benchmarks/experimenters/nasbench101_experimenter_test.py index 31105e70b..5b5ac1a08 100644 --- a/vizier/_src/benchmarks/experimenters/nasbench101_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/nasbench101_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/nasbench201_experimenter.py b/vizier/_src/benchmarks/experimenters/nasbench201_experimenter.py index 2ed965bf5..862424bc3 100644 --- a/vizier/_src/benchmarks/experimenters/nasbench201_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/nasbench201_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/nasbench201_experimenter_test.py b/vizier/_src/benchmarks/experimenters/nasbench201_experimenter_test.py index f65f5da36..7841c204e 100644 --- a/vizier/_src/benchmarks/experimenters/nasbench201_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/nasbench201_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/noisy_experimenter.py b/vizier/_src/benchmarks/experimenters/noisy_experimenter.py index 3e1277a3b..b34dd3076 100644 --- a/vizier/_src/benchmarks/experimenters/noisy_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/noisy_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/noisy_experimenter_test.py b/vizier/_src/benchmarks/experimenters/noisy_experimenter_test.py index e0297607b..36964f0e6 100644 --- a/vizier/_src/benchmarks/experimenters/noisy_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/noisy_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/numpy_experimenter.py b/vizier/_src/benchmarks/experimenters/numpy_experimenter.py index 3639e20a1..900baee57 100644 --- a/vizier/_src/benchmarks/experimenters/numpy_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/numpy_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/numpy_experimenter_test.py b/vizier/_src/benchmarks/experimenters/numpy_experimenter_test.py index d36690acb..f89865757 100644 --- a/vizier/_src/benchmarks/experimenters/numpy_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/numpy_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/shifting_experimenter.py b/vizier/_src/benchmarks/experimenters/shifting_experimenter.py index 40c43765c..6bbe2d33d 100644 --- a/vizier/_src/benchmarks/experimenters/shifting_experimenter.py +++ b/vizier/_src/benchmarks/experimenters/shifting_experimenter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/shifting_experimenter_test.py b/vizier/_src/benchmarks/experimenters/shifting_experimenter_test.py index 5d568b85a..508b236c3 100644 --- a/vizier/_src/benchmarks/experimenters/shifting_experimenter_test.py +++ b/vizier/_src/benchmarks/experimenters/shifting_experimenter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/experimenters/synthetic/bbob.py b/vizier/_src/benchmarks/experimenters/synthetic/bbob.py index 058b6a3c0..2ef744802 100644 --- a/vizier/_src/benchmarks/experimenters/synthetic/bbob.py +++ b/vizier/_src/benchmarks/experimenters/synthetic/bbob.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/runners/algorithm_suggester.py b/vizier/_src/benchmarks/runners/algorithm_suggester.py index 7d36c1c1b..7b68b4b9a 100644 --- a/vizier/_src/benchmarks/runners/algorithm_suggester.py +++ b/vizier/_src/benchmarks/runners/algorithm_suggester.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/runners/benchmark_runner.py b/vizier/_src/benchmarks/runners/benchmark_runner.py index 2b7292f85..3c4136a49 100644 --- a/vizier/_src/benchmarks/runners/benchmark_runner.py +++ b/vizier/_src/benchmarks/runners/benchmark_runner.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/benchmarks/runners/benchmark_runner_test.py b/vizier/_src/benchmarks/runners/benchmark_runner_test.py index 072a88dc3..50480e5f4 100644 --- a/vizier/_src/benchmarks/runners/benchmark_runner_test.py +++ b/vizier/_src/benchmarks/runners/benchmark_runner_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pythia/local_policy_supporters.py b/vizier/_src/pythia/local_policy_supporters.py index a86dc6091..0bbfdde4f 100644 --- a/vizier/_src/pythia/local_policy_supporters.py +++ b/vizier/_src/pythia/local_policy_supporters.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pythia/local_policy_supporters_test.py b/vizier/_src/pythia/local_policy_supporters_test.py index a7b0a7439..7dd81b4a5 100644 --- a/vizier/_src/pythia/local_policy_supporters_test.py +++ b/vizier/_src/pythia/local_policy_supporters_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pythia/policy.py b/vizier/_src/pythia/policy.py index abed424d3..fbe5a5099 100644 --- a/vizier/_src/pythia/policy.py +++ b/vizier/_src/pythia/policy.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pythia/policy_supporter.py b/vizier/_src/pythia/policy_supporter.py index b7e03b437..5a14f157c 100644 --- a/vizier/_src/pythia/policy_supporter.py +++ b/vizier/_src/pythia/policy_supporter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pythia/pythia_errors.py b/vizier/_src/pythia/pythia_errors.py index b1e3b688a..7892e2e3a 100644 --- a/vizier/_src/pythia/pythia_errors.py +++ b/vizier/_src/pythia/pythia_errors.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/multimetric/hypervolume.py b/vizier/_src/pyvizier/multimetric/hypervolume.py index 84e7907d1..14587abf4 100644 --- a/vizier/_src/pyvizier/multimetric/hypervolume.py +++ b/vizier/_src/pyvizier/multimetric/hypervolume.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/multimetric/hypervolume_test.py b/vizier/_src/pyvizier/multimetric/hypervolume_test.py index 6d6bdcb05..81a0370bd 100644 --- a/vizier/_src/pyvizier/multimetric/hypervolume_test.py +++ b/vizier/_src/pyvizier/multimetric/hypervolume_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/multimetric/pareto_optimal.py b/vizier/_src/pyvizier/multimetric/pareto_optimal.py index 5fa77627c..4624ed5d4 100644 --- a/vizier/_src/pyvizier/multimetric/pareto_optimal.py +++ b/vizier/_src/pyvizier/multimetric/pareto_optimal.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/multimetric/pareto_optimal_test.py b/vizier/_src/pyvizier/multimetric/pareto_optimal_test.py index b34b98aaa..a95d1e373 100644 --- a/vizier/_src/pyvizier/multimetric/pareto_optimal_test.py +++ b/vizier/_src/pyvizier/multimetric/pareto_optimal_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/multimetric/safety.py b/vizier/_src/pyvizier/multimetric/safety.py index 7859160b7..822701cb4 100644 --- a/vizier/_src/pyvizier/multimetric/safety.py +++ b/vizier/_src/pyvizier/multimetric/safety.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/multimetric/safety_test.py b/vizier/_src/pyvizier/multimetric/safety_test.py index 226e1836b..55d107c87 100644 --- a/vizier/_src/pyvizier/multimetric/safety_test.py +++ b/vizier/_src/pyvizier/multimetric/safety_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/automated_stopping.py b/vizier/_src/pyvizier/oss/automated_stopping.py index abade1c2c..7bf50174a 100644 --- a/vizier/_src/pyvizier/oss/automated_stopping.py +++ b/vizier/_src/pyvizier/oss/automated_stopping.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/automated_stopping_test.py b/vizier/_src/pyvizier/oss/automated_stopping_test.py index 306eab9d5..215b17364 100644 --- a/vizier/_src/pyvizier/oss/automated_stopping_test.py +++ b/vizier/_src/pyvizier/oss/automated_stopping_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/compare.py b/vizier/_src/pyvizier/oss/compare.py index 274311997..752fb6fab 100644 --- a/vizier/_src/pyvizier/oss/compare.py +++ b/vizier/_src/pyvizier/oss/compare.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/metadata_util.py b/vizier/_src/pyvizier/oss/metadata_util.py index a8d47788d..0b0c49941 100644 --- a/vizier/_src/pyvizier/oss/metadata_util.py +++ b/vizier/_src/pyvizier/oss/metadata_util.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/metadata_util_test.py b/vizier/_src/pyvizier/oss/metadata_util_test.py index f019c695a..ffa09a979 100644 --- a/vizier/_src/pyvizier/oss/metadata_util_test.py +++ b/vizier/_src/pyvizier/oss/metadata_util_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/proto_converters.py b/vizier/_src/pyvizier/oss/proto_converters.py index d98cb6031..1d61f4d16 100644 --- a/vizier/_src/pyvizier/oss/proto_converters.py +++ b/vizier/_src/pyvizier/oss/proto_converters.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/proto_converters_test.py b/vizier/_src/pyvizier/oss/proto_converters_test.py index 9257b3ef1..cbf24c190 100644 --- a/vizier/_src/pyvizier/oss/proto_converters_test.py +++ b/vizier/_src/pyvizier/oss/proto_converters_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/study_config.py b/vizier/_src/pyvizier/oss/study_config.py index 516073244..766105053 100644 --- a/vizier/_src/pyvizier/oss/study_config.py +++ b/vizier/_src/pyvizier/oss/study_config.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/oss/study_config_test.py b/vizier/_src/pyvizier/oss/study_config_test.py index 05399c809..1eaa935a7 100644 --- a/vizier/_src/pyvizier/oss/study_config_test.py +++ b/vizier/_src/pyvizier/oss/study_config_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/pythia/study.py b/vizier/_src/pyvizier/pythia/study.py index 845516332..0d41d5f89 100644 --- a/vizier/_src/pyvizier/pythia/study.py +++ b/vizier/_src/pyvizier/pythia/study.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/base_study_config.py b/vizier/_src/pyvizier/shared/base_study_config.py index 8bd357907..7847ac8f2 100644 --- a/vizier/_src/pyvizier/shared/base_study_config.py +++ b/vizier/_src/pyvizier/shared/base_study_config.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/base_study_config_test.py b/vizier/_src/pyvizier/shared/base_study_config_test.py index 80f6f1f7f..1ab6418b8 100644 --- a/vizier/_src/pyvizier/shared/base_study_config_test.py +++ b/vizier/_src/pyvizier/shared/base_study_config_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/common.py b/vizier/_src/pyvizier/shared/common.py index c0d641cc3..9cf5f0f78 100644 --- a/vizier/_src/pyvizier/shared/common.py +++ b/vizier/_src/pyvizier/shared/common.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/common_test.py b/vizier/_src/pyvizier/shared/common_test.py index 813556bbe..63c95994d 100644 --- a/vizier/_src/pyvizier/shared/common_test.py +++ b/vizier/_src/pyvizier/shared/common_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/context.py b/vizier/_src/pyvizier/shared/context.py index 0101bb856..b3bed08db 100644 --- a/vizier/_src/pyvizier/shared/context.py +++ b/vizier/_src/pyvizier/shared/context.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/context_test.py b/vizier/_src/pyvizier/shared/context_test.py index 8cf1ea852..89fafe7cc 100644 --- a/vizier/_src/pyvizier/shared/context_test.py +++ b/vizier/_src/pyvizier/shared/context_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/parameter_config.py b/vizier/_src/pyvizier/shared/parameter_config.py index 17f603dfb..192f5a162 100644 --- a/vizier/_src/pyvizier/shared/parameter_config.py +++ b/vizier/_src/pyvizier/shared/parameter_config.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/parameter_config_test.py b/vizier/_src/pyvizier/shared/parameter_config_test.py index 9ea982393..f66534b33 100644 --- a/vizier/_src/pyvizier/shared/parameter_config_test.py +++ b/vizier/_src/pyvizier/shared/parameter_config_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/parameter_iterators.py b/vizier/_src/pyvizier/shared/parameter_iterators.py index 864c2a455..2a5afa0b1 100644 --- a/vizier/_src/pyvizier/shared/parameter_iterators.py +++ b/vizier/_src/pyvizier/shared/parameter_iterators.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/parameter_iterators_test.py b/vizier/_src/pyvizier/shared/parameter_iterators_test.py index d61315ea8..7b681e40d 100644 --- a/vizier/_src/pyvizier/shared/parameter_iterators_test.py +++ b/vizier/_src/pyvizier/shared/parameter_iterators_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/study.py b/vizier/_src/pyvizier/shared/study.py index fa3206386..02209b6e8 100644 --- a/vizier/_src/pyvizier/shared/study.py +++ b/vizier/_src/pyvizier/shared/study.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/trial.py b/vizier/_src/pyvizier/shared/trial.py index 42f5a61f2..faf533b6b 100644 --- a/vizier/_src/pyvizier/shared/trial.py +++ b/vizier/_src/pyvizier/shared/trial.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/_src/pyvizier/shared/trial_test.py b/vizier/_src/pyvizier/shared/trial_test.py index cbb216fcd..00653fad1 100644 --- a/vizier/_src/pyvizier/shared/trial_test.py +++ b/vizier/_src/pyvizier/shared/trial_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/algorithms/__init__.py b/vizier/algorithms/__init__.py index 0901e6bf4..429cc4c7a 100644 --- a/vizier/algorithms/__init__.py +++ b/vizier/algorithms/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/benchmarks/__init__.py b/vizier/benchmarks/__init__.py index 196631b78..03f5ace50 100644 --- a/vizier/benchmarks/__init__.py +++ b/vizier/benchmarks/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/benchmarks/hpo/__init__.py b/vizier/benchmarks/hpo/__init__.py index a2d940e16..541a9f10f 100644 --- a/vizier/benchmarks/hpo/__init__.py +++ b/vizier/benchmarks/hpo/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/benchmarks/nas/__init__.py b/vizier/benchmarks/nas/__init__.py index 066060488..f1a7be84d 100644 --- a/vizier/benchmarks/nas/__init__.py +++ b/vizier/benchmarks/nas/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/benchmarks/rl/__init__.py b/vizier/benchmarks/rl/__init__.py index 282a82ff2..14e858898 100644 --- a/vizier/benchmarks/rl/__init__.py +++ b/vizier/benchmarks/rl/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/client/__init__.py b/vizier/client/__init__.py index 5f5e39c0e..486213571 100644 --- a/vizier/client/__init__.py +++ b/vizier/client/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/client/client_abc.py b/vizier/client/client_abc.py index 9d38197d2..6c5e8336d 100644 --- a/vizier/client/client_abc.py +++ b/vizier/client/client_abc.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/client/client_abc_testing.py b/vizier/client/client_abc_testing.py index 7c0b3081f..fa43a30b3 100644 --- a/vizier/client/client_abc_testing.py +++ b/vizier/client/client_abc_testing.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/interfaces/__init__.py b/vizier/interfaces/__init__.py index 73647cfe8..f7237490e 100644 --- a/vizier/interfaces/__init__.py +++ b/vizier/interfaces/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/interfaces/serializable.py b/vizier/interfaces/serializable.py index 3d75ee7bd..954965e27 100644 --- a/vizier/interfaces/serializable.py +++ b/vizier/interfaces/serializable.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pythia.py b/vizier/pythia.py index 92fb9f1ed..ed845de4a 100644 --- a/vizier/pythia.py +++ b/vizier/pythia.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/__init__.py b/vizier/pyvizier/__init__.py index b5b383a43..619b8f3ac 100644 --- a/vizier/pyvizier/__init__.py +++ b/vizier/pyvizier/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/converters/__init__.py b/vizier/pyvizier/converters/__init__.py index 114806f46..b96380b37 100644 --- a/vizier/pyvizier/converters/__init__.py +++ b/vizier/pyvizier/converters/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/converters/core.py b/vizier/pyvizier/converters/core.py index 7d945ed9f..460e714c1 100644 --- a/vizier/pyvizier/converters/core.py +++ b/vizier/pyvizier/converters/core.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/converters/core_test.py b/vizier/pyvizier/converters/core_test.py index 0dd806220..de53cb3c2 100644 --- a/vizier/pyvizier/converters/core_test.py +++ b/vizier/pyvizier/converters/core_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/converters/spatio_temporal.py b/vizier/pyvizier/converters/spatio_temporal.py index f073588a7..af2a107f5 100644 --- a/vizier/pyvizier/converters/spatio_temporal.py +++ b/vizier/pyvizier/converters/spatio_temporal.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/converters/spatio_temporal_test.py b/vizier/pyvizier/converters/spatio_temporal_test.py index b5c1f8072..eacf6991d 100644 --- a/vizier/pyvizier/converters/spatio_temporal_test.py +++ b/vizier/pyvizier/converters/spatio_temporal_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/multimetric/__init__.py b/vizier/pyvizier/multimetric/__init__.py index 33fb1f2f0..8f6f076f0 100644 --- a/vizier/pyvizier/multimetric/__init__.py +++ b/vizier/pyvizier/multimetric/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/pyvizier/multimetric/xla_pareto.py b/vizier/pyvizier/multimetric/xla_pareto.py index c208f3067..9c9a9c8c7 100644 --- a/vizier/pyvizier/multimetric/xla_pareto.py +++ b/vizier/pyvizier/multimetric/xla_pareto.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/__init__.py b/vizier/service/__init__.py index 516e6f1a3..b2ab6c43e 100644 --- a/vizier/service/__init__.py +++ b/vizier/service/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/clients.py b/vizier/service/clients.py index 27494c4fa..19e32da27 100644 --- a/vizier/service/clients.py +++ b/vizier/service/clients.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/clients_test.py b/vizier/service/clients_test.py index d064a6432..11f947586 100644 --- a/vizier/service/clients_test.py +++ b/vizier/service/clients_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/datastore.py b/vizier/service/datastore.py index baef6afe8..f0c71c436 100644 --- a/vizier/service/datastore.py +++ b/vizier/service/datastore.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/datastore_test.py b/vizier/service/datastore_test.py index adbb76bf0..17681b7d7 100644 --- a/vizier/service/datastore_test.py +++ b/vizier/service/datastore_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/datastore_test_lib.py b/vizier/service/datastore_test_lib.py index 9afe77a78..ef44d4614 100644 --- a/vizier/service/datastore_test_lib.py +++ b/vizier/service/datastore_test_lib.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/performance_test.py b/vizier/service/performance_test.py index b4baf4470..2031b11fe 100644 --- a/vizier/service/performance_test.py +++ b/vizier/service/performance_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/pythia_server.py b/vizier/service/pythia_server.py index de9dd446b..fcc6c145d 100644 --- a/vizier/service/pythia_server.py +++ b/vizier/service/pythia_server.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/pythia_util.py b/vizier/service/pythia_util.py index c80fb532e..36e5f3242 100644 --- a/vizier/service/pythia_util.py +++ b/vizier/service/pythia_util.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/pyvizier/__init__.py b/vizier/service/pyvizier/__init__.py index 2d76e423a..6d155c204 100644 --- a/vizier/service/pyvizier/__init__.py +++ b/vizier/service/pyvizier/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/resources.py b/vizier/service/resources.py index 83d0d9294..c6efe0a47 100644 --- a/vizier/service/resources.py +++ b/vizier/service/resources.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/resources_test.py b/vizier/service/resources_test.py index c71637183..4868b6642 100644 --- a/vizier/service/resources_test.py +++ b/vizier/service/resources_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/service_policy_supporter.py b/vizier/service/service_policy_supporter.py index b881e2151..e0c796175 100644 --- a/vizier/service/service_policy_supporter.py +++ b/vizier/service/service_policy_supporter.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/service_policy_supporter_test.py b/vizier/service/service_policy_supporter_test.py index a44541161..734b16da1 100644 --- a/vizier/service/service_policy_supporter_test.py +++ b/vizier/service/service_policy_supporter_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/sql_datastore.py b/vizier/service/sql_datastore.py index 1f1cdf445..880cab6da 100644 --- a/vizier/service/sql_datastore.py +++ b/vizier/service/sql_datastore.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/sql_datastore_test.py b/vizier/service/sql_datastore_test.py index fb0954db5..cf26fbc3a 100644 --- a/vizier/service/sql_datastore_test.py +++ b/vizier/service/sql_datastore_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/stubs_util.py b/vizier/service/stubs_util.py index 8b548a23b..1e9ea78d5 100644 --- a/vizier/service/stubs_util.py +++ b/vizier/service/stubs_util.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/testing/util.py b/vizier/service/testing/util.py index bc28fc621..63dde2729 100644 --- a/vizier/service/testing/util.py +++ b/vizier/service/testing/util.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/vizier_client.py b/vizier/service/vizier_client.py index 8a74cb210..231630634 100644 --- a/vizier/service/vizier_client.py +++ b/vizier/service/vizier_client.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/vizier_client_test.py b/vizier/service/vizier_client_test.py index 5dd050af7..bc0876157 100644 --- a/vizier/service/vizier_client_test.py +++ b/vizier/service/vizier_client_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/vizier_server.py b/vizier/service/vizier_server.py index 12c07649a..c9a0304c5 100644 --- a/vizier/service/vizier_server.py +++ b/vizier/service/vizier_server.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/vizier_server_test.py b/vizier/service/vizier_server_test.py index 23cd2f0cc..8a5b65637 100644 --- a/vizier/service/vizier_server_test.py +++ b/vizier/service/vizier_server_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/vizier_service.py b/vizier/service/vizier_service.py index 71a4e1c9c..60820adda 100644 --- a/vizier/service/vizier_service.py +++ b/vizier/service/vizier_service.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/service/vizier_service_test.py b/vizier/service/vizier_service_test.py index 3b69a0893..2a05a9aad 100644 --- a/vizier/service/vizier_service_test.py +++ b/vizier/service/vizier_service_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/testing/__init__.py b/vizier/testing/__init__.py index e45dee00a..b89ff8922 100644 --- a/vizier/testing/__init__.py +++ b/vizier/testing/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/testing/test_studies.py b/vizier/testing/test_studies.py index 4331de9c5..96c25b1d1 100644 --- a/vizier/testing/test_studies.py +++ b/vizier/testing/test_studies.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/utils/attrs_utils.py b/vizier/utils/attrs_utils.py index 092782867..7f02bd498 100644 --- a/vizier/utils/attrs_utils.py +++ b/vizier/utils/attrs_utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/utils/attrs_utils_test.py b/vizier/utils/attrs_utils_test.py index 88e9cef5d..1a3c82126 100644 --- a/vizier/utils/attrs_utils_test.py +++ b/vizier/utils/attrs_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/utils/json_utils.py b/vizier/utils/json_utils.py index d8c127c54..362f44b59 100644 --- a/vizier/utils/json_utils.py +++ b/vizier/utils/json_utils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/vizier/utils/json_utils_test.py b/vizier/utils/json_utils_test.py index 8a472f54f..dba873d1e 100644 --- a/vizier/utils/json_utils_test.py +++ b/vizier/utils/json_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2022 Google LLC. +# Copyright 2023 Google LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.