Connecting your Node

To connect your node and begin training, follow the steps below:

  1. Clone the rl-swarm repo:

    git clone https://github.com/gensyn-ai/rl-swarm
  2. Install Docker Make sure you have Docker installed and the Docker daemon is running on your machine. To do that, follow these instructions according to your OS.

  3. Start the Swarm Run the following commands from the root of the repository. CPU support If you’re using a Mac or if your machine has CPU-only support:

    docker-compose run --rm --build -Pit swarm-cpu

    GPU support If you're using a machine with an officially supported GPU:

    docker-compose run --rm --build -Pit swarm-gpu

    Experimental (advanced) mode

    If you want to experiment with the GenRL-Swarm library and its configurable parameters, we recommend you run RL Swarm via shell script:

    ./run_rl_swarm.sh

Last updated