From 0480a0d81986e1c027dbca93068c51fbe6319f18 Mon Sep 17 00:00:00 2001 From: Susumu OTA <> Date: Tue, 17 Sep 2019 00:44:39 +0900 Subject: [PATCH 1/4] fix curriculum order --- .../animalai_train/animalai_train/trainers/curriculum.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/animalai_train/animalai_train/trainers/curriculum.py b/examples/animalai_train/animalai_train/trainers/curriculum.py index c59a6d1b..e4538310 100644 --- a/examples/animalai_train/animalai_train/trainers/curriculum.py +++ b/examples/animalai_train/animalai_train/trainers/curriculum.py @@ -63,7 +63,7 @@ def __init__(self, location, yaml_files): raise Curriculum( 'One or more configuration file(s) in curriculum {0} could not be found'.format(location) ) - self.configurations = [ArenaConfig(os.path.join(folder, file)) for file in yaml_files] + self.configurations = [ArenaConfig(os.path.join(folder, file)) for file in configuration_files] @property def lesson_num(self): @@ -92,9 +92,10 @@ def increment_lesson(self, measure_val): # parameters = self.data['parameters'] # for key in parameters: # config[key] = parameters[key][self.lesson_num] - logger.info('{0} lesson changed. Now in lesson {1}' + logger.info('{0} lesson changed. Now in lesson {1}: {2}' .format(self._brain_name, - self.lesson_num)) + self.lesson_num, + self.data['configuration_files'][self.lesson_num])) return True return False From 551b1a82e668265d20cbf9b370a990fc6d6a0261 Mon Sep 17 00:00:00 2001 From: Benjamin Beyret Date: Mon, 16 Sep 2019 17:50:14 +0100 Subject: [PATCH 2/4] update packages versions --- animalai/setup.py | 2 +- examples/animalai_train/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/animalai/setup.py b/animalai/setup.py index 4e326e01..fb566b5b 100644 --- a/animalai/setup.py +++ b/animalai/setup.py @@ -2,7 +2,7 @@ setup( name='animalai', - version='1.1.0', + version='1.1.1', description='Animal AI competition interface', url='https://github.com/beyretb/AnimalAI-Olympics', author='Benjamin Beyret', diff --git a/examples/animalai_train/setup.py b/examples/animalai_train/setup.py index 9479f403..9d9bd209 100644 --- a/examples/animalai_train/setup.py +++ b/examples/animalai_train/setup.py @@ -2,7 +2,7 @@ setup( name='animalai_train', - version='1.1.0', + version='1.1.1', description='Animal AI competition training library', url='https://github.com/beyretb/AnimalAI-Olympics', author='Benjamin Beyret', From 4d792ea1f7aa65f7dbfe606f99dc5f02e16d5f58 Mon Sep 17 00:00:00 2001 From: Benjamin Beyret Date: Mon, 16 Sep 2019 17:52:05 +0100 Subject: [PATCH 3/4] update prizes readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index afaabcee..20475ed1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Animal-AI Olympics ## IMPORTANT NOTICE ABOUT PRIZES -Please remember **to submit to the competition and be considered for prizes you must also fill in [this form](https://forms.gle/PKCgp2JAWvjf4c9i6)**. You must do so before the end of September 1st to be considered for the AWS prizes! +Please remember **to submit to the competition and be considered for prizes you must also fill in [this form](https://forms.gle/PKCgp2JAWvjf4c9i6)**. You must do so before the end of November 1st!

@@ -19,7 +19,7 @@ The Animal-AI Olympics is an AI competition with tests inspired by animal cognit * 3rd place overall: **$1,500**. * WBA-Prize: **$5,000 total value** - $4,000 with up to $1,000 travel to speak at NeurIPS 2019 * Category Prizes: **$200** For best performance in each category (cannot combine with other prizes - max 1 per team). -* **Mid-way AWS Research Credits**: The top 20 entries as of **September 1st** will be awarded **$500** of AWS credits. +* ~~**Mid-way AWS Research Credits**: The top 20 entries as of **September 1st** will be awarded **$500** of AWS credits.~~ (already awarded) See [competition launch page](https://mdcrosby.com/blog/animalailaunch.html) and official rules for further details. From 267ce9725b0c89977867c94206ecb0f2f132f7e0 Mon Sep 17 00:00:00 2001 From: Benjamin Beyret Date: Mon, 16 Sep 2019 18:09:58 +0100 Subject: [PATCH 4/4] v1.1.1 release note --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 20475ed1..699f0e1e 100644 --- a/README.md +++ b/README.md @@ -172,6 +172,9 @@ features with the agent's frames in order to have frames in line with the config ## Version History +- v1.1.1 + - Hotfix curriculum loading in the wrong order + - v1.1.0 - Add curriculum learning to `animalai-train` to use yaml configurations