mihahauke / deep_rl_vizdoom

Deep reinforcement learning in ViZDoom (using Tensorflow)
18 stars 8 forks source link

A bug in train_a3c.py #4

Closed GoingMyWay closed 7 years ago

GoingMyWay commented 7 years ago

Hi, thank you for developing this repo. In train_a3c.py, the file content is the same as train_adqn.py

train_a3c.py

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from _train_test import train_adqn

if __name__ == "__main__":
    train_adqn()

train_adqn.py

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from _train_test import train_adqn

if __name__ == "__main__":
    train_adqn()
mihahauke commented 7 years ago

Yes indeed. My bad.