(self)
| 72 | self.blendmvs=('dataset_low_res' in args.datapath) |
| 73 | |
| 74 | def main(self): |
| 75 | # print(self.args.test) |
| 76 | if self.args.vis: |
| 77 | self.visualization() |
| 78 | return |
| 79 | if self.args.val: |
| 80 | self.validate() |
| 81 | return |
| 82 | if self.args.test: |
| 83 | self.test() |
| 84 | return |
| 85 | self.train() |
| 86 | |
| 87 | def train(self): |
| 88 |
no test coverage detected