Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1e721344 authored by KOPANAS Georgios's avatar KOPANAS Georgios
Browse files

fix constructor of resnet

parent 222d2e30
No related branches found
No related tags found
No related merge requests found
...@@ -113,8 +113,7 @@ if input_json.get("neural_weights_folder"): ...@@ -113,8 +113,7 @@ if input_json.get("neural_weights_folder"):
neural_renderer = torch.jit.load(os.path.join(input_json.get("neural_weights_folder"), "model_" + str(load_iter))) neural_renderer = torch.jit.load(os.path.join(input_json.get("neural_weights_folder"), "model_" + str(load_iter)))
else: else:
# 5 + extra_features is 3 for color and 2 for depth and backgrouind bleeding # 5 + extra_features is 3 for color and 2 for depth and backgrouind bleeding
neural_renderer = FixUpResNet(views=args.input_views, neural_renderer = FixUpResNet(in_channels=args.extra_features+3,
in_channels=args.extra_features+3,
internal_depth=args.internal_depth, internal_depth=args.internal_depth,
blocks=args.residual_blocks, blocks=args.residual_blocks,
kernel_size=3, kernel_size=3,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment