Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Add placeholder agent for HRED model #229

Merged
merged 11 commits into from
Jul 21, 2017
5 changes: 5 additions & 0 deletions parlai/agents/hred/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
12 changes: 12 additions & 0 deletions parlai/agents/hred/hred.py
Original file line number Diff line number Diff line change
@@ -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")