Reinforcement Learning project by Team Markovian Marvels
Build a 3D target structure based on the conversation between an architect (gives instructions) and a builder (asks clarifying questions).
Create the python environment
conda create -y -n rl_project python=3.9
conda activate rl_projectAll the dependencies can be installed using below command
pip install -r requirements.txtTo train the NLP T5 Model:
python nlp_task/train.pyTo train the RL Model:
python training_run.py --config_path iglu_baseline.yamlTo evaluate the NLP Model:
cd nlp_task
python nlp_evaluation.pyTo evaluate the RL Model:
python evaluation.py