This repository is used as a playground to run auto lane gen experiments. Each of these are containerized through Docker.
Pre-requisite: Before you run any of the commands below, make sure you are familiar with Docker. If not, we highly recommend going through this 2-hour video which teaches you the basics of Docker.
To get started, run the docker compose up command, followed by the name of the service you are interested in (if you don't specify, you will end up launching every single service...). You can find all the services we have under docker-compose.yml.
docker compose -p <userId> up <imageName> # ex: docker compose -p jackm up atrous_attn_vitThen, to enter the terminal of the Docker container, open a new terminal and run
docker exec -it <ContainerID> /bin/bashIf you want to develop from the inside container itself, we recommend using VSCode built-in Docker container.
docker/contains a set of customDockerfileto build our own containerssrc/contains the source code for our investigation projects, usually accompanied their own separateREADME.mdto explain how the project is being conducted.