diff --git a/parlai/agents/hred/__init__.py b/parlai/agents/hred/__init__.py index e69de29bb2d..de7579ee4a2 100755 --- a/parlai/agents/hred/__init__.py +++ b/parlai/agents/hred/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) 2017-present, Facebook, Inc. +# All rights reserved. +# This source code is licensed under the BSD-style license found in the +# LICENSE file in the root directory of this source tree. An additional grant +# of patent rights can be found in the PATENTS file in the same directory. diff --git a/parlai/agents/hred/hred.py b/parlai/agents/hred/hred.py new file mode 100644 index 00000000000..b3e888496d7 --- /dev/null +++ b/parlai/agents/hred/hred.py @@ -0,0 +1,12 @@ +# Copyright (c) 2017-present, Facebook, Inc. +# All rights reserved. +# This source code is licensed under the BSD-style license found in the +# LICENSE file in the root directory of this source tree. An additional grant +# of patent rights can be found in the PATENTS file in the same directory. + +from parlai.core.agents import Agent + +class HredAgent(Agent): + + def __init__(self, opt, shared=None): + raise RuntimeError("Work on this model is currently in progress")