From 101fe08924bca7b3b7f05bb61e30bda133b22aad Mon Sep 17 00:00:00 2001 From: Piv <18462828+Piv200@users.noreply.github.com> Date: Wed, 16 Jun 2021 21:55:13 +0930 Subject: [PATCH] Start adding stubs for unsupervised training --- unsupervised/trainer.py | 5 +++++ unsupervised/utils.py | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 unsupervised/trainer.py create mode 100644 unsupervised/utils.py diff --git a/unsupervised/trainer.py b/unsupervised/trainer.py new file mode 100644 index 0000000..b1e6d7a --- /dev/null +++ b/unsupervised/trainer.py @@ -0,0 +1,5 @@ +""" +Trainer to learn depth information on unlabeled data (raw images/videos) + +Allows pluggable depth networks for differing performance (including fast-depth) +""" diff --git a/unsupervised/utils.py b/unsupervised/utils.py new file mode 100644 index 0000000..8e4bad5 --- /dev/null +++ b/unsupervised/utils.py @@ -0,0 +1,3 @@ +""" +Utils to load and split image/video data. +"""