Skip to content

Commit

Permalink
add LICENSE to new files
Browse files Browse the repository at this point in the history
Signed-off-by: Joozef315 <[email protected]>
  • Loading branch information
JooZef315 committed Nov 6, 2024
1 parent c051573 commit 2223196
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/feature_extraction_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.

# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# --------------------------------------------------------
# References:
# DeiT: https://github.com/facebookresearch/deit
# BEiT: https://github.com/microsoft/unilm/tree/master/beit
# --------------------------------------------------------

import unittest
from translation.feature_extraction_module import FeatureExtractionConfig, FeatureExtractionModule, LauncherConfig
from unittest.mock import patch, MagicMock
Expand Down
11 changes: 11 additions & 0 deletions translation/feature_extraction_module.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.

# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# --------------------------------------------------------
# References:
# DeiT: https://github.com/facebookresearch/deit
# BEiT: https://github.com/microsoft/unilm/tree/master/beit
# --------------------------------------------------------

import math
import time
from dataclasses import dataclass
Expand Down
11 changes: 11 additions & 0 deletions utils/download_model.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.

# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# --------------------------------------------------------
# References:
# DeiT: https://github.com/facebookresearch/deit
# BEiT: https://github.com/microsoft/unilm/tree/master/beit
# --------------------------------------------------------

import os
import wget

Expand Down

0 comments on commit 2223196

Please sign in to comment.