mirror of
https://github.com/kritiksoman/GIMP-ML
synced 2024-10-31 09:20:18 +00:00
19 lines
507 B
Python
Executable File
19 lines
507 B
Python
Executable File
# Copyright Niantic 2019. Patent Pending. All rights reserved.
|
|
#
|
|
# This software is licensed under the terms of the Monodepth2 licence
|
|
# which allows for non-commercial use only, the full terms of which are made
|
|
# available in the LICENSE file.
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
from trainer import Trainer
|
|
from options import MonodepthOptions
|
|
|
|
options = MonodepthOptions()
|
|
opts = options.parse()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
trainer = Trainer(opts)
|
|
trainer.train()
|