-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c912ef
commit 6134895
Showing
6 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Metadata-Version: 2.1 | ||
Name: gym-stag-hunt | ||
Version: 0.0.1 | ||
Summary: Markov stag hunt environment for openai gym | ||
Home-page: https://github.com/NullDefault/gym-stag-hunt | ||
Author: David Nesterov-Rappoport | ||
Author-email: davisha999@gmail.com | ||
License: UNKNOWN | ||
Description: This package is based on openai-gym and created for running experiments on Markov stag hunt games. | ||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.6 | ||
Description-Content-Type: text/markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
README.md | ||
setup.py | ||
gym_stag_hunt/__init__.py | ||
gym_stag_hunt/demos.py | ||
gym_stag_hunt/env_checker.py | ||
gym_stag_hunt.egg-info/PKG-INFO | ||
gym_stag_hunt.egg-info/SOURCES.txt | ||
gym_stag_hunt.egg-info/dependency_links.txt | ||
gym_stag_hunt.egg-info/requires.txt | ||
gym_stag_hunt.egg-info/top_level.txt | ||
gym_stag_hunt/envs/__init__.py | ||
gym_stag_hunt/envs/abstract_markov_staghunt.py | ||
gym_stag_hunt/envs/escalation.py | ||
gym_stag_hunt/envs/harvest.py | ||
gym_stag_hunt/envs/hunt.py | ||
gym_stag_hunt/envs/simple.py | ||
gym_stag_hunt/src/__init__.py | ||
gym_stag_hunt/src/entities.py | ||
gym_stag_hunt/src/utils.py | ||
gym_stag_hunt/src/games/__init__.py | ||
gym_stag_hunt/src/games/abstract_grid_game.py | ||
gym_stag_hunt/src/games/escalation_game.py | ||
gym_stag_hunt/src/games/harvest_game.py | ||
gym_stag_hunt/src/games/staghunt_game.py | ||
gym_stag_hunt/src/renderers/__init__.py | ||
gym_stag_hunt/src/renderers/abstract_renderer.py | ||
gym_stag_hunt/src/renderers/escalation_renderer.py | ||
gym_stag_hunt/src/renderers/harvest_renderer.py | ||
gym_stag_hunt/src/renderers/hunt_renderer.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
gym | ||
pygame |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
gym_stag_hunt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters