JOP-Lee / READ

AAAI2023,implementation of "READ: Large-Scale Neural Scene Rendering for Autonomous Driving", the experimental results are significantly better than Nerf-based methods
https://github.com/JOP-Lee/READ-Large-Scale-Neural-Scene-Rendering-for-Autonomous-Driving
GNU General Public License v2.0
447 stars 55 forks source link

Errors in training #66

Open antithing opened 7 months ago

antithing commented 7 months ago

Hi, I am running on windows, and see this error when using train.py:

Traceback (most recent call last):
  File "D:\NERF\ROAD\READ-main\train.py", line 507, in <module>
    pipeline.create(args)
  File "D:\NERF\ROAD\READ-main\READ\pipelines\ogl.py", line 86, in create
    self.ds_train, self.ds_val = get_datasets(args)
  File "D:\NERF\ROAD\READ-main\READ\datasets\dynamic.py", line 333, in get_datasets
    for ds_train, ds_val in pool_out.get():
  File "C:\Users\B\AppData\Local\Programs\Python\Python39\lib\multiprocessing\pool.py", line 771, in get
    raise self._value
AttributeError: module 'os' has no attribute 'uname'

I cannot find the code that uses this attribute name, where might it be?

Thanks!