nazaruka / gym-http-api

NSGA2-based Sonic agent + experimental code
MIT License
1 stars 1 forks source link

Command line arguments #9

Closed schrum2 closed 5 years ago

schrum2 commented 5 years ago

Once #8 is done (which is a pretty big issue that will take some time) add a command-line parser to make it easy to specify any parameter (epsilon, alpha, number of episodes, etc.). There are lots of good examples of how to do this properly in Python.

I think this is a good example: https://docs.python.org/3.3/library/argparse.html But am open to other established approaches.

schrum2 commented 5 years ago

Here is an example to draw on: https://github.com/anishathalye/neural-style/blob/master/neural_style.py

schrum2 commented 5 years ago

Make the help for the command line give a list of the supported domains

schrum2 commented 5 years ago

We should have a way to easily launch the PPO Sonic agent with a variety of different parameter configurations, via the command line. This will work best if you have a way to launch the Sonic code from the Central Access Point #8

schrum2 commented 5 years ago

Closing for same reason I closed #8