Spaces:
Running
on
L40S
Running
on
L40S
File size: 458 Bytes
0514ca2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env python3
# Copyright (C) 2024-present Naver Corporation. All rights reserved.
# Licensed under CC BY-NC-SA 4.0 (non-commercial use only).
#
# --------------------------------------------------------
# training executable for DUSt3R
# --------------------------------------------------------
from dust3r.training import get_args_parser, train
if __name__ == '__main__':
args = get_args_parser()
args = args.parse_args()
train(args)
|