From c4988be71e2e6afdbad4b49f58ccdd269fba2a05 Mon Sep 17 00:00:00 2001 From: bkb2135 <98138173+bkb2135@users.noreply.github.com> Date: Fri, 12 Jul 2024 10:28:21 -0400 Subject: [PATCH 1/3] Point to macrocosmos entity --- prompting/utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompting/utils/config.py b/prompting/utils/config.py index ba61e076a..27245d83b 100644 --- a/prompting/utils/config.py +++ b/prompting/utils/config.py @@ -380,7 +380,7 @@ def add_validator_args(cls, parser): "--wandb.entity", type=str, help="The name of the project where you are sending the new run.", - default="opentensor-dev", + default="macrocosmos", ) parser.add_argument( From bdad04cd8f9d46489ea0aef594def8e6add87eaf Mon Sep 17 00:00:00 2001 From: bkb2135 Date: Fri, 12 Jul 2024 20:33:19 +0000 Subject: [PATCH 2/3] Adjust project name --- prompting/utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompting/utils/config.py b/prompting/utils/config.py index 27245d83b..67ae5b94d 100644 --- a/prompting/utils/config.py +++ b/prompting/utils/config.py @@ -373,7 +373,7 @@ def add_validator_args(cls, parser): "--wandb.project_name", type=str, help="The name of the project where you are sending the new run.", - default="alpha-validators", + default="prompting-validators", ) parser.add_argument( From b9140603f77a893fa29941cd952fb3b22d7474c4 Mon Sep 17 00:00:00 2001 From: bkb2135 Date: Fri, 12 Jul 2024 20:47:47 +0000 Subject: [PATCH 3/3] Increase spec version to 2.5.2 --- prompting/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompting/__init__.py b/prompting/__init__.py index ead464f4e..1639249d7 100644 --- a/prompting/__init__.py +++ b/prompting/__init__.py @@ -16,7 +16,7 @@ # DEALINGS IN THE SOFTWARE. # Define the version of the template module. -__version__ = "2.5.1" +__version__ = "2.5.2" version_split = __version__.split(".") __spec_version__ = ( (10000 * int(version_split[0]))