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

Commit

Permalink
Add Missing Copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
klshuster committed Oct 22, 2018
1 parent 03971f0 commit 248a44f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions 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
Expand Down
9 changes: 8 additions & 1 deletion 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

Expand Down Expand Up @@ -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
return out

0 comments on commit 248a44f

Please sign in to comment.