TiagoCortinhal / SalsaNext

Uncertainty-aware Semantic Segmentation of LiDAR Point Clouds for Autonomous Driving
MIT License
413 stars 102 forks source link

I have some problems about the code repeated in user.py #78

Closed Xavier-wa closed 11 months ago

Xavier-wa commented 11 months ago

`
I have some problems about the code repeated in user.py from 231 to 245

        if torch.cuda.is_available():
            torch.cuda.synchronize()
        res = time.time() - end
        print("Network seq", path_seq, "scan", path_name,
               "in", res, "sec")
        end = time.time()
        cnn.append(res)

        if torch.cuda.is_available():
            torch.cuda.synchronize()
        res = time.time() - end
        print("Network seq", path_seq, "scan", path_name,
               "in", res, "sec")
        end = time.time()
        cnn.append(res)

`