From 666a5ee203daaed5aad8b5ebe90a7250cb136322 Mon Sep 17 00:00:00 2001 From: bkerbl Date: Wed, 26 Jul 2023 10:24:56 +0200 Subject: [PATCH] Reestablished control over pipeline from remote --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 0b7a9c1..36faf0d 100644 --- a/train.py +++ b/train.py @@ -54,7 +54,7 @@ def training(dataset, opt, pipe, testing_iterations, saving_iterations, checkpoi while network_gui.conn != None: try: net_image_bytes = None - custom_cam, do_training, pipe.do_shs_python, pipe.do_cov_python, keep_alive, scaling_modifer = network_gui.receive() + custom_cam, do_training, pipe.convert_SHs_python, pipe.compute_cov3D_python, keep_alive, scaling_modifer = network_gui.receive() if custom_cam != None: net_image = render(custom_cam, gaussians, pipe, background, scaling_modifer)["render"] net_image_bytes = memoryview((torch.clamp(net_image, min=0, max=1.0) * 255).byte().permute(1, 2, 0).contiguous().cpu().numpy())