Skip to content

Commit

Permalink
Add missing __init__ to fairseq.benchmark (#1042)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: fairinternal/fairseq-py#1042

Differential Revision: D20030269

Pulled By: myleott

fbshipit-source-id: ebe64eb4e58af447ed53b9f5b5adf2e5f65da359
  • Loading branch information
myleott authored and facebook-github-bot committed Feb 21, 2020
1 parent f2e86ed commit e1de989
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions fairseq/benchmark/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

# import models/tasks to register them
from . import ( # noqa
dummy_lm,
dummy_masked_lm,
dummy_model,
)

0 comments on commit e1de989

Please sign in to comment.