Views
No views yet
1pip install torch numpy pygame
2python main.py # Train + watch live visualization
3python main.py --train-only # Train fast without visualization
4python main.py --watch # Watch saved trained agents play
5python main.py --episodes 1000 --agents 4 # Custom settingsagentquest/
├── main.py # Entry point
├── config/game_config.py # All settings & hyperparameters
├── environment/
│ ├── world.py # Grid world, resources, monsters
│ └── game_env.py # Multi-agent environment
├── agents/dqn_agent.py # DQN brain + replay memory
├── training/trainer.py # Training loop
└── viz/renderer.py # Pygame live visualizer