Skip to content

Commit

Permalink
Disable postprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
tsurumeso committed Nov 30, 2023
1 parent bab233d commit 5001e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def main():
p.add_argument('--cropsize', '-c', type=int, default=256)
p.add_argument('--output_image', '-I', action='store_true')
p.add_argument('--tta', '-t', action='store_true')
p.add_argument('--postprocess', '-p', action='store_true')
# p.add_argument('--postprocess', '-p', action='store_true')
p.add_argument('--output_dir', '-o', type=str, default="")
args = p.parse_args()

Expand Down Expand Up @@ -145,7 +145,7 @@ def main():
device=device,
batchsize=args.batchsize,
cropsize=args.cropsize,
postprocess=args.postprocess
# postprocess=args.postprocess
)

if args.tta:
Expand Down

0 comments on commit 5001e39

Please sign in to comment.