Getting Started
Setting Up Your Environment
git clone https://github.com/your-username/touhou_bot.git cd touhou_botpython -m venv .venv source venv/bin/activate # On Powershell or cmd use `.\venv\Scripts\activate`pip install -r requirements.txtpip install -r requirements-test.txt
Structure of the Project
touhou_bot/
├── .vscode/ # Visual Studio Code settings
├── checkpoints/ # The models that interrupts training
├── conf/ # Configuration files
├── doc/ # Documentation files
├── models/ # The path to store models
├── resource/ # The path to store the resource files
├── src/ # Source code for the Touhou Bot
| ├── agent/ # Agent and environment module
| ├── config/ # Configuration module
| ├── gamebase/ # Base classes for game-specific implementations
| ├── perception/ # Perception modules
| └── web/ # Web APIs
├── tests/ # Unit tests
├── utils/ # Additional tools and scripts
├── logo.png # Project logo
├── pytest.ini # Pytest configuration
├── requirements.txt # Main dependencies
├── requirements-test.txt # Dependencies for testing
├── run.py # Running the application with Web UI
└── README.md # Project documentationWorkflow of the Project
Last updated
