From 248a44fbbe0955169554fa63d542155c64732497 Mon Sep 17 00:00:00 2001 From: Kurt Shuster Date: Mon, 22 Oct 2018 10:27:31 -0400 Subject: [PATCH] Add Missing Copyright --- scripts/download_data.sh | 6 ++++++ ttw/models/landmark_classification.py | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/scripts/download_data.sh b/scripts/download_data.sh index 09846ac..56acab3 100644 --- a/scripts/download_data.sh +++ b/scripts/download_data.sh @@ -1,4 +1,10 @@ #/bin/bash +# Copyright (c) Facebook, Inc. and its 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. +# if [ -z "$1" ] then diff --git a/ttw/models/landmark_classification.py b/ttw/models/landmark_classification.py index 1bf9199..efd2fe0 100644 --- a/ttw/models/landmark_classification.py +++ b/ttw/models/landmark_classification.py @@ -1,3 +1,10 @@ +# Copyright (c) Facebook, Inc. and its 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. +# + import torch import torch.nn as nn @@ -63,4 +70,4 @@ def forward(self, batch): out['precision'] = precision_score(y_true, y_pred, average='weighted') out['recall'] = recall_score(y_true, y_pred, average='weighted') - return out \ No newline at end of file + return out