-
cd StateMachine
python3 main.py
On a Raspberry Pi:
git clone git@github.com:uscmakers/BartholomewBanksworth.gitcd BartholomewBanksworth/StateMachinePhysical/Embeddedpython3 server.py
On local machine:
cd StateMachinePhysicalpython3 main.py
- Install Docker and Docker Compose
-
cd SIMPLEv1
docker-compose up -d
bash ./scripts/install_env.sh monopoly - To train, run:
docker-compose exec app python3 train.py -r -e monopoly- To test with one human player and one AI, run:
docker-compose exec app python3 test.py -d -g 1 -a base human -e monopoly- To test with two AI players, run:
docker-compose exec app python3 test.py -d -g 1 -a base base -e monopoly
On a Raspberry Pi:
git clone git@github.com:uscmakers/BartholomewBanksworth.gitcd BartholomewBanksworth/StateMachinePhysicalAIv2/app/Embeddedpython3 server.py
On local machine: [Windows or Intel Mac required]
- Install Docker and Docker Compose
cd StateMachinePhysicalAIv2docker-compose up -dbash ./scripts/install_env.sh monopoly- For 2 players:
docker-compose exec app python3 test.py -g 1 -a base2 human -e monopoly - For 3 players:
docker-compose exec app python3 test.py -g 1 -a base3 base3 human -e monopoly - For 4 players:
docker-compose exec app python3 test.py -g 1 -a base4 base4 base4 human -e monopoly