After I run make under gym_tensorflow, I got the flowing error messages
.//atari/tf_atari.cpp:137:16: error: ‘std::string AtariEnvironment::DebugString()’ marked ‘override’, but does not override
string DebugString() override { return "AtariEnvironment"; }
.//atari/tf_atari.cpp:155:64: error: invalid new-expression of abstract class type ‘AtariEnvironment’
AtariEnvironment* env = new AtariEnvironment(batch_size);
After I run make under gym_tensorflow, I got the flowing error messages .//atari/tf_atari.cpp:137:16: error: ‘std::string AtariEnvironment::DebugString()’ marked ‘override’, but does not override string DebugString() override { return "AtariEnvironment"; }
.//atari/tf_atari.cpp:155:64: error: invalid new-expression of abstract class type ‘AtariEnvironment’ AtariEnvironment* env = new AtariEnvironment(batch_size);
What's the problem?