From f5c553bf8e48533785406d48abcd8d59b1fdca4e Mon Sep 17 00:00:00 2001 From: aiueola Date: Wed, 31 May 2023 15:42:03 +0900 Subject: [PATCH] copyright and license --- LICENSE | 2 +- README.md | 2 +- basicgym/README.md | 2 +- basicgym/__init__.py | 2 +- basicgym/envs/simulator/__init__.py | 2 +- basicgym/envs/simulator/base.py | 2 +- basicgym/envs/simulator/function.py | 2 +- basicgym/envs/synthetic.py | 2 +- basicgym/types.py | 2 +- basicgym/utils.py | 2 +- docs/conf.py | 2 +- recgym/README.md | 2 +- recgym/__init__.py | 2 +- recgym/envs/rec.py | 2 +- recgym/envs/simulator/__init__ .py | 2 +- recgym/envs/simulator/base.py | 2 +- recgym/envs/simulator/function.py | 2 +- recgym/types.py | 2 +- recgym/utils.py | 2 +- rtbgym/README.md | 2 +- rtbgym/__init__.py | 2 +- rtbgym/envs/rtb.py | 2 +- rtbgym/envs/simulator/__init__.py | 2 +- rtbgym/envs/simulator/base.py | 2 +- rtbgym/envs/simulator/bidder.py | 2 +- rtbgym/envs/simulator/function.py | 2 +- rtbgym/envs/simulator/rtb_synthetic.py | 2 +- rtbgym/envs/wrapper_rtb.py | 2 +- rtbgym/types.py | 2 +- rtbgym/utils.py | 2 +- scope_rl/__init__.py | 2 +- scope_rl/dataset/__init__.py | 2 +- scope_rl/dataset/base.py | 2 +- scope_rl/dataset/synthetic.py | 2 +- scope_rl/ope/__init__.py | 2 +- scope_rl/ope/basic_estimators_continuous.py | 2 +- scope_rl/ope/basic_estimators_discrete.py | 2 +- scope_rl/ope/cumulative_distribution_estimators_continuous.py | 2 +- scope_rl/ope/cumulative_distribution_estimators_discrete.py | 2 +- scope_rl/ope/estimators_base.py | 2 +- scope_rl/ope/input.py | 2 +- scope_rl/ope/marginal_estimators_continuous.py | 2 +- scope_rl/ope/marginal_estimators_discrete.py | 2 +- scope_rl/ope/online.py | 2 +- scope_rl/ope/ope.py | 2 +- scope_rl/ope/ops.py | 2 +- scope_rl/ope/weight_value_learning/__init__.py | 2 +- .../augmented_lagrangian_learning_continuous.py | 2 +- .../augmented_lagrangian_learning_discrete.py | 2 +- scope_rl/ope/weight_value_learning/base.py | 2 +- scope_rl/ope/weight_value_learning/function.py | 2 +- .../weight_value_learning/minimax_value_learning_continuous.py | 2 +- .../weight_value_learning/minimax_value_learning_discrete.py | 2 +- .../weight_value_learning/minimax_weight_learning_continuous.py | 2 +- .../weight_value_learning/minimax_weight_learning_discrete.py | 2 +- scope_rl/policy/__init__.py | 2 +- scope_rl/policy/encoder.py | 2 +- scope_rl/policy/head.py | 2 +- scope_rl/policy/opl.py | 2 +- scope_rl/types.py | 2 +- scope_rl/utils.py | 2 +- scope_rl/version.py | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/LICENSE b/LICENSE index 5d332baa..256d6fdc 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2023] [Haruka Kiyohara, Ren Kishimoto, Hakuhodo Technologies, and Hanjuku-kaso Co., Ltd.] + Copyright [2023] [Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd.] 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/README.md b/README.md index 81fd742c..bf7bf688 100644 --- a/README.md +++ b/README.md @@ -433,7 +433,7 @@ This project is licensed under Apache 2.0 license - see [LICENSE](LICENSE) file - [Haruka Kiyohara](https://sites.google.com/view/harukakiyohara) (**Main Contributor**) - Ren Kishimoto (Tokyo Institute of Technology) -- Kosuke Kawakami (Hakuhodo Technologies) +- Kosuke Kawakami (HAKUHODO Technologies Inc.) - Ken Kobayashi (Tokyo Institute of Technology) - Kazuhide Nakata (Tokyo Institute of Technology) - [Yuta Saito](https://usait0.com/en/) (Cornell University) diff --git a/basicgym/README.md b/basicgym/README.md index 407ee3f4..015d74c7 100644 --- a/basicgym/README.md +++ b/basicgym/README.md @@ -269,7 +269,7 @@ This project is licensed under Apache 2.0 license - see [LICENSE](../LICENSE) fi - [Haruka Kiyohara](https://sites.google.com/view/harukakiyohara) (**Main Contributor**) - Ren Kishimoto (Tokyo Institute of Technology) -- Kosuke Kawakami (Hakuhodo Technologies) +- Kosuke Kawakami (HAKUHODO Technologies Inc.) - Ken Kobayashi (Tokyo Institute of Technology) - Kazuhide Nakata (Tokyo Institute of Technology) - [Yuta Saito](https://usait0.com/en/) (Cornell University) diff --git a/basicgym/__init__.py b/basicgym/__init__.py index 2cd40267..b026b49c 100644 --- a/basicgym/__init__.py +++ b/basicgym/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. import gym diff --git a/basicgym/envs/simulator/__init__.py b/basicgym/envs/simulator/__init__.py index d69bcc36..68b18ed8 100644 --- a/basicgym/envs/simulator/__init__.py +++ b/basicgym/envs/simulator/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from basicgym.envs.simulator.function import ( diff --git a/basicgym/envs/simulator/base.py b/basicgym/envs/simulator/base.py index d1cc6032..c62ff334 100644 --- a/basicgym/envs/simulator/base.py +++ b/basicgym/envs/simulator/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Abstract Base Class for Simulation.""" diff --git a/basicgym/envs/simulator/function.py b/basicgym/envs/simulator/function.py index 98f7a9a8..f6e9338f 100644 --- a/basicgym/envs/simulator/function.py +++ b/basicgym/envs/simulator/function.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Mathematical Functions used in Synthetic System .""" diff --git a/basicgym/envs/synthetic.py b/basicgym/envs/synthetic.py index 17ca2984..c7e3e6af 100644 --- a/basicgym/envs/synthetic.py +++ b/basicgym/envs/synthetic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Basic Reinforcement Learning (RL) Environment.""" diff --git a/basicgym/types.py b/basicgym/types.py index 1667067d..1f9a9c9a 100644 --- a/basicgym/types.py +++ b/basicgym/types.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Types.""" diff --git a/basicgym/utils.py b/basicgym/utils.py index bbe46400..5c44074a 100644 --- a/basicgym/utils.py +++ b/basicgym/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Useful tools.""" diff --git a/docs/conf.py b/docs/conf.py index 7ba20e5d..2a455bbd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ # -- Project information ----------------------------------------------------- project = "SCOPE-RL" -copyright = "2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Technologies, Hanjuku-kaso Co. Ltd.," +copyright = "2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., Hanjuku-kaso Co. Ltd.," author = "Haruka Kiyohara" # The full version, including alpha/beta/rc tags diff --git a/recgym/README.md b/recgym/README.md index 6a7e9ff5..93eeb89b 100644 --- a/recgym/README.md +++ b/recgym/README.md @@ -254,7 +254,7 @@ This project is licensed under Apache 2.0 license - see [LICENSE](../LICENSE) fi - [Haruka Kiyohara](https://sites.google.com/view/harukakiyohara) (**Main Contributor**) - Ren Kishimoto (Tokyo Institute of Technology) -- Kosuke Kawakami (Hakuhodo Technologies) +- Kosuke Kawakami (HAKUHODO Technologies Inc.) - Ken Kobayashi (Tokyo Institute of Technology) - Kazuhide Nakata (Tokyo Institute of Technology) - [Yuta Saito](https://usait0.com/en/) (Cornell University) diff --git a/recgym/__init__.py b/recgym/__init__.py index dcc51fb7..4539ef74 100644 --- a/recgym/__init__.py +++ b/recgym/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. import gym diff --git a/recgym/envs/rec.py b/recgym/envs/rec.py index c4e4b06b..7e982279 100644 --- a/recgym/envs/rec.py +++ b/recgym/envs/rec.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Reinforcement Learning (RL) Environment for Recommender System (REC).""" diff --git a/recgym/envs/simulator/__init__ .py b/recgym/envs/simulator/__init__ .py index a84bbe1c..361a4d8f 100644 --- a/recgym/envs/simulator/__init__ .py +++ b/recgym/envs/simulator/__init__ .py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from recgym.envs.simulator.function import UserModel diff --git a/recgym/envs/simulator/base.py b/recgym/envs/simulator/base.py index ccb790be..f0bce80e 100644 --- a/recgym/envs/simulator/base.py +++ b/recgym/envs/simulator/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Abstract Base Class for Simulation.""" diff --git a/recgym/envs/simulator/function.py b/recgym/envs/simulator/function.py index 46ad67c2..1e439c3e 100644 --- a/recgym/envs/simulator/function.py +++ b/recgym/envs/simulator/function.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Mathematical Functions used in Recommender System (REC) .""" diff --git a/recgym/types.py b/recgym/types.py index d48d19f0..1a0fc2ba 100644 --- a/recgym/types.py +++ b/recgym/types.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. diff --git a/recgym/utils.py b/recgym/utils.py index 689fe9ef..b09906e5 100644 --- a/recgym/utils.py +++ b/recgym/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. diff --git a/rtbgym/README.md b/rtbgym/README.md index 1b520ab4..e349d358 100644 --- a/rtbgym/README.md +++ b/rtbgym/README.md @@ -385,7 +385,7 @@ This project is licensed under Apache 2.0 license - see [LICENSE](../LICENSE) fi - [Haruka Kiyohara](https://sites.google.com/view/harukakiyohara) (**Main Contributor**) - Ren Kishimoto (Tokyo Institute of Technology) -- Kosuke Kawakami (Hakuhodo Technologies) +- Kosuke Kawakami (HAKUHODO Technologies Inc.) - Ken Kobayashi (Tokyo Institute of Technology) - Kazuhide Nakata (Tokyo Institute of Technology) - [Yuta Saito](https://usait0.com/en/) (Cornell University) diff --git a/rtbgym/__init__.py b/rtbgym/__init__.py index 5f0fa070..1be8de7f 100644 --- a/rtbgym/__init__.py +++ b/rtbgym/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. import gym diff --git a/rtbgym/envs/rtb.py b/rtbgym/envs/rtb.py index c4117bd8..631b6de6 100644 --- a/rtbgym/envs/rtb.py +++ b/rtbgym/envs/rtb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Reinforcement Learning (RL) Environment for Real-Time Bidding (RTB).""" diff --git a/rtbgym/envs/simulator/__init__.py b/rtbgym/envs/simulator/__init__.py index 2cee7e3c..84a7ce76 100644 --- a/rtbgym/envs/simulator/__init__.py +++ b/rtbgym/envs/simulator/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. diff --git a/rtbgym/envs/simulator/base.py b/rtbgym/envs/simulator/base.py index da4b1bca..2b2438eb 100644 --- a/rtbgym/envs/simulator/base.py +++ b/rtbgym/envs/simulator/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Abstract Base Class for Simulation.""" diff --git a/rtbgym/envs/simulator/bidder.py b/rtbgym/envs/simulator/bidder.py index 1f314624..88ab174b 100644 --- a/rtbgym/envs/simulator/bidder.py +++ b/rtbgym/envs/simulator/bidder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Bid Price Calculation.""" diff --git a/rtbgym/envs/simulator/function.py b/rtbgym/envs/simulator/function.py index 41cb79d4..4ffe241f 100644 --- a/rtbgym/envs/simulator/function.py +++ b/rtbgym/envs/simulator/function.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Mathematical Functions used in Real-Time Bidding (RTB) Simulation.""" diff --git a/rtbgym/envs/simulator/rtb_synthetic.py b/rtbgym/envs/simulator/rtb_synthetic.py index 6b96cc81..ed9263d5 100644 --- a/rtbgym/envs/simulator/rtb_synthetic.py +++ b/rtbgym/envs/simulator/rtb_synthetic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Synthetic Bidding Auction Simulation.""" diff --git a/rtbgym/envs/wrapper_rtb.py b/rtbgym/envs/wrapper_rtb.py index db125147..ba67ef14 100644 --- a/rtbgym/envs/wrapper_rtb.py +++ b/rtbgym/envs/wrapper_rtb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Customization of RTBEnv.""" diff --git a/rtbgym/types.py b/rtbgym/types.py index cd3c4928..efbc2c86 100644 --- a/rtbgym/types.py +++ b/rtbgym/types.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Types.""" diff --git a/rtbgym/utils.py b/rtbgym/utils.py index 1ae84189..c8e216c3 100644 --- a/rtbgym/utils.py +++ b/rtbgym/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Useful tools.""" diff --git a/scope_rl/__init__.py b/scope_rl/__init__.py index 77fb3bb7..8ce32890 100644 --- a/scope_rl/__init__.py +++ b/scope_rl/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from .version import __version__ # noqa diff --git a/scope_rl/dataset/__init__.py b/scope_rl/dataset/__init__.py index d23ac166..7ff1b379 100644 --- a/scope_rl/dataset/__init__.py +++ b/scope_rl/dataset/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from scope_rl.dataset.base import BaseDataset diff --git a/scope_rl/dataset/base.py b/scope_rl/dataset/base.py index cbaae4e0..e7dac229 100644 --- a/scope_rl/dataset/base.py +++ b/scope_rl/dataset/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Abstract base class for logged dataset.""" diff --git a/scope_rl/dataset/synthetic.py b/scope_rl/dataset/synthetic.py index bee02feb..b4407629 100644 --- a/scope_rl/dataset/synthetic.py +++ b/scope_rl/dataset/synthetic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Class to handle synthetic dataset generation.""" diff --git a/scope_rl/ope/__init__.py b/scope_rl/ope/__init__.py index 60e030be..a2e05096 100644 --- a/scope_rl/ope/__init__.py +++ b/scope_rl/ope/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from scope_rl.ope.ops import OffPolicySelection diff --git a/scope_rl/ope/basic_estimators_continuous.py b/scope_rl/ope/basic_estimators_continuous.py index a4cb7fc0..61a35642 100644 --- a/scope_rl/ope/basic_estimators_continuous.py +++ b/scope_rl/ope/basic_estimators_continuous.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Off-Policy Estimators for continuous action cases (designed for deterministic policies).""" diff --git a/scope_rl/ope/basic_estimators_discrete.py b/scope_rl/ope/basic_estimators_discrete.py index 1725c6c9..19ea1a45 100644 --- a/scope_rl/ope/basic_estimators_discrete.py +++ b/scope_rl/ope/basic_estimators_discrete.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Off-Policy Estimators for discrete action cases.""" diff --git a/scope_rl/ope/cumulative_distribution_estimators_continuous.py b/scope_rl/ope/cumulative_distribution_estimators_continuous.py index 853fa2e1..f3a30337 100644 --- a/scope_rl/ope/cumulative_distribution_estimators_continuous.py +++ b/scope_rl/ope/cumulative_distribution_estimators_continuous.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Cumulative Distribution Off-Policy Estimators for continuous action cases (designed for deterministic policies).""" diff --git a/scope_rl/ope/cumulative_distribution_estimators_discrete.py b/scope_rl/ope/cumulative_distribution_estimators_discrete.py index 9c3f0ee1..375d9aa1 100644 --- a/scope_rl/ope/cumulative_distribution_estimators_discrete.py +++ b/scope_rl/ope/cumulative_distribution_estimators_discrete.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Cumulative Distribution Off-Policy Estimators for discrete action cases.""" diff --git a/scope_rl/ope/estimators_base.py b/scope_rl/ope/estimators_base.py index 482347d3..ec1a969e 100644 --- a/scope_rl/ope/estimators_base.py +++ b/scope_rl/ope/estimators_base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Abstract base class for Off-Policy Estimator.""" diff --git a/scope_rl/ope/input.py b/scope_rl/ope/input.py index 33f1f79f..303c353e 100644 --- a/scope_rl/ope/input.py +++ b/scope_rl/ope/input.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Meta class to create input for Off-Policy Evaluation (OPE).""" diff --git a/scope_rl/ope/marginal_estimators_continuous.py b/scope_rl/ope/marginal_estimators_continuous.py index f0da83b6..e63265e4 100644 --- a/scope_rl/ope/marginal_estimators_continuous.py +++ b/scope_rl/ope/marginal_estimators_continuous.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """State(-Action) Marginal Off-Policy Estimators for continuous action cases (designed for deterministic policies).""" diff --git a/scope_rl/ope/marginal_estimators_discrete.py b/scope_rl/ope/marginal_estimators_discrete.py index 335db898..3341437e 100644 --- a/scope_rl/ope/marginal_estimators_discrete.py +++ b/scope_rl/ope/marginal_estimators_discrete.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """State(-Action) Marginal Off-Policy Estimators for discrete action cases.""" diff --git a/scope_rl/ope/online.py b/scope_rl/ope/online.py index 5ddff90f..df05d015 100644 --- a/scope_rl/ope/online.py +++ b/scope_rl/ope/online.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. "On-Policy performance comparison." diff --git a/scope_rl/ope/ope.py b/scope_rl/ope/ope.py index 80cbc73c..c0848ca0 100644 --- a/scope_rl/ope/ope.py +++ b/scope_rl/ope/ope.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Meta class to handle standard and cumulative distribution OPE.""" diff --git a/scope_rl/ope/ops.py b/scope_rl/ope/ops.py index d5b5f0c0..07df3643 100644 --- a/scope_rl/ope/ops.py +++ b/scope_rl/ope/ops.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Meta class to handle Off-Policy Selection (OPS) and evaluation of OPE/OPS.""" diff --git a/scope_rl/ope/weight_value_learning/__init__.py b/scope_rl/ope/weight_value_learning/__init__.py index aae17518..398a3bfb 100644 --- a/scope_rl/ope/weight_value_learning/__init__.py +++ b/scope_rl/ope/weight_value_learning/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from scope_rl.ope.weight_value_learning.base import BaseWeightValueLearner diff --git a/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_continuous.py b/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_continuous.py index ca5d6755..7d41ea8b 100644 --- a/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_continuous.py +++ b/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_continuous.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Augmented Lagrangian method for weight/value function learning (continuous action cases).""" diff --git a/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_discrete.py b/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_discrete.py index cce46329..0b9a78de 100644 --- a/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_discrete.py +++ b/scope_rl/ope/weight_value_learning/augmented_lagrangian_learning_discrete.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Augmented Lagrangian method for weight/value function learning (discrete action cases).""" diff --git a/scope_rl/ope/weight_value_learning/base.py b/scope_rl/ope/weight_value_learning/base.py index d142ad6e..17310828 100644 --- a/scope_rl/ope/weight_value_learning/base.py +++ b/scope_rl/ope/weight_value_learning/base.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Abstract base class for weight and value learning.""" diff --git a/scope_rl/ope/weight_value_learning/function.py b/scope_rl/ope/weight_value_learning/function.py index b2638b1c..dab089ea 100644 --- a/scope_rl/ope/weight_value_learning/function.py +++ b/scope_rl/ope/weight_value_learning/function.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Weight and Value Functions.""" diff --git a/scope_rl/ope/weight_value_learning/minimax_value_learning_continuous.py b/scope_rl/ope/weight_value_learning/minimax_value_learning_continuous.py index a812cd67..8c049f76 100644 --- a/scope_rl/ope/weight_value_learning/minimax_value_learning_continuous.py +++ b/scope_rl/ope/weight_value_learning/minimax_value_learning_continuous.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Minimax value function learning (continuous action cases).""" diff --git a/scope_rl/ope/weight_value_learning/minimax_value_learning_discrete.py b/scope_rl/ope/weight_value_learning/minimax_value_learning_discrete.py index 7a16c76b..b752f174 100644 --- a/scope_rl/ope/weight_value_learning/minimax_value_learning_discrete.py +++ b/scope_rl/ope/weight_value_learning/minimax_value_learning_discrete.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Minimax value function learning (discrete action cases).""" diff --git a/scope_rl/ope/weight_value_learning/minimax_weight_learning_continuous.py b/scope_rl/ope/weight_value_learning/minimax_weight_learning_continuous.py index 7b251811..c1548f29 100644 --- a/scope_rl/ope/weight_value_learning/minimax_weight_learning_continuous.py +++ b/scope_rl/ope/weight_value_learning/minimax_weight_learning_continuous.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Minimax weight function learning (continuous action cases).""" diff --git a/scope_rl/ope/weight_value_learning/minimax_weight_learning_discrete.py b/scope_rl/ope/weight_value_learning/minimax_weight_learning_discrete.py index 0677d228..49aa5d35 100644 --- a/scope_rl/ope/weight_value_learning/minimax_weight_learning_discrete.py +++ b/scope_rl/ope/weight_value_learning/minimax_weight_learning_discrete.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Minimax weight function learning (discrete action cases).""" diff --git a/scope_rl/policy/__init__.py b/scope_rl/policy/__init__.py index 2e1b912b..ecb1a2f9 100644 --- a/scope_rl/policy/__init__.py +++ b/scope_rl/policy/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. from scope_rl.policy.opl import OffPolicyLearning diff --git a/scope_rl/policy/encoder.py b/scope_rl/policy/encoder.py index 5e05c6b4..6c3bfaf3 100644 --- a/scope_rl/policy/encoder.py +++ b/scope_rl/policy/encoder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. import copy diff --git a/scope_rl/policy/head.py b/scope_rl/policy/head.py index d498a816..04247767 100644 --- a/scope_rl/policy/head.py +++ b/scope_rl/policy/head.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Wrapper class to convert greedy policy into stochastic.""" diff --git a/scope_rl/policy/opl.py b/scope_rl/policy/opl.py index 3073636e..7969395b 100644 --- a/scope_rl/policy/opl.py +++ b/scope_rl/policy/opl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Meta class to handle Off-Policy Learning (OPL).""" diff --git a/scope_rl/types.py b/scope_rl/types.py index c187aa65..c9608944 100644 --- a/scope_rl/types.py +++ b/scope_rl/types.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Types.""" diff --git a/scope_rl/utils.py b/scope_rl/utils.py index c3c5cb22..4a993c83 100644 --- a/scope_rl/utils.py +++ b/scope_rl/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. """Useful tools.""" diff --git a/scope_rl/version.py b/scope_rl/version.py index 0a1e783f..f2cbd257 100644 --- a/scope_rl/version.py +++ b/scope_rl/version.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, Hakuhodo Techonologies, and Hanjuku-kaso Co., Ltd. All rights reserved. +# Copyright (c) 2023, Haruka Kiyohara, Ren Kishimoto, HAKUHODO Technologies Inc., and Hanjuku-kaso Co., Ltd. All rights reserved. # Licensed under the Apache 2.0 License. __version__ = "0.0.0"