From 8ac5e8f0839ed6a19f1ce258a6ef3f509ef695b3 Mon Sep 17 00:00:00 2001 From: Jeremy Reizenstein Date: Thu, 24 Mar 2022 07:04:38 -0700 Subject: [PATCH] add missing __init__.py files Summary: Some directories in implicitron were missing __init__.py files. Reviewed By: patricklabatut Differential Revision: D35076364 fbshipit-source-id: f74442766efe8694fdd47954ac4882e7c4daac60 --- pytorch3d/implicitron/__init__.py | 5 +++++ pytorch3d/implicitron/dataset/__init__.py | 5 +++++ pytorch3d/implicitron/evaluation/__init__.py | 5 +++++ pytorch3d/implicitron/models/__init__.py | 5 +++++ pytorch3d/implicitron/models/renderer/__init__.py | 5 +++++ pytorch3d/implicitron/models/view_pooling/__init__.py | 5 +++++ pytorch3d/implicitron/third_party/__init__.py | 5 +++++ pytorch3d/implicitron/tools/__init__.py | 5 +++++ 8 files changed, 40 insertions(+) create mode 100644 pytorch3d/implicitron/__init__.py create mode 100644 pytorch3d/implicitron/dataset/__init__.py create mode 100644 pytorch3d/implicitron/evaluation/__init__.py create mode 100644 pytorch3d/implicitron/models/__init__.py create mode 100644 pytorch3d/implicitron/models/renderer/__init__.py create mode 100644 pytorch3d/implicitron/models/view_pooling/__init__.py create mode 100644 pytorch3d/implicitron/third_party/__init__.py diff --git a/pytorch3d/implicitron/__init__.py b/pytorch3d/implicitron/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/dataset/__init__.py b/pytorch3d/implicitron/dataset/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/dataset/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/evaluation/__init__.py b/pytorch3d/implicitron/evaluation/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/evaluation/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/models/__init__.py b/pytorch3d/implicitron/models/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/models/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/models/renderer/__init__.py b/pytorch3d/implicitron/models/renderer/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/models/renderer/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/models/view_pooling/__init__.py b/pytorch3d/implicitron/models/view_pooling/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/models/view_pooling/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/third_party/__init__.py b/pytorch3d/implicitron/third_party/__init__.py new file mode 100644 index 00000000..2e41cd71 --- /dev/null +++ b/pytorch3d/implicitron/third_party/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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. diff --git a/pytorch3d/implicitron/tools/__init__.py b/pytorch3d/implicitron/tools/__init__.py index e69de29b..2e41cd71 100644 --- a/pytorch3d/implicitron/tools/__init__.py +++ b/pytorch3d/implicitron/tools/__init__.py @@ -0,0 +1,5 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# 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.