-
cd StateMachine
python3 main.py
On a Raspberry Pi:
git clone [email protected]:uscmakers/BartholomewBanksworth.git
cd BartholomewBanksworth/StateMachinePhysical/Embedded
python3 server.py
On local machine:
cd StateMachinePhysical
python3 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 [email protected]:uscmakers/BartholomewBanksworth.git
cd BartholomewBanksworth/StateMachinePhysicalAIv2/app/Embedded
python3 server.py
On local machine: [Windows or Intel Mac required]
- Install Docker and Docker Compose
cd StateMachinePhysicalAIv2
docker-compose up -d
bash ./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