Skip to content

Commit

Permalink
Merge v1.1.1
Browse files Browse the repository at this point in the history
V1.1.1
Hotfix curriculum loading in the wrong order
  • Loading branch information
beyretb authored Sep 16, 2019
2 parents 2d5155d + 267ce97 commit de95b16
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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!

<p align="center">
<img height="300" src="documentation/PrefabsPictures/steampunkFOURcrop.png">
Expand All @@ -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.

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion animalai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
7 changes: 4 additions & 3 deletions examples/animalai_train/animalai_train/trainers/curriculum.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/animalai_train/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit de95b16

Please sign in to comment.