You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks to your help, I was able to successfully run the training and evaluation processes. However, when I ran the python data_analysis.py script, I encountered the following error:
(unitraj) D:\Coding\Python\nuScenes\unitraj\UniTraj\unitraj>python data_analysis.py
C:\Users\xxxx.conda\envs\unitraj\lib\site-packages\hydra_internal\defaults_list.py:251: UserWarning: In 'config': Defaults list is missing _self_. See https://hydra.cc/docs/1.2/upgrades/1.0_to_1.1/default_composition_order for more information
warnings.warn(msg, UserWarning)
Loading training data...
Warning: cache path ./cache\nuscenes\data_samples already exists, skip
Loaded 61 samples from data_samples/nuscenes
Data loaded
Error executing job with overrides: []
Traceback (most recent call last):
File "D:\Coding\Python\nuScenes\unitraj\UniTraj\unitraj\data_analysis.py", line 22, in data_analysis
train_batch_size = max(cfg.method['train_batch_size'] // len(cfg.devices) // train_set.data_chunk_size, 1)
AttributeError: 'AutoBotDataset' object has no attribute 'data_chunk_size'
Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace.
I’d like to understand what I might have missed. Is there a manual or documentation I can refer to for running python data_analysis.py properly?
The text was updated successfully, but these errors were encountered:
Thanks to your help, I was able to successfully run the training and evaluation processes. However, when I ran the python data_analysis.py script, I encountered the following error:
(unitraj) D:\Coding\Python\nuScenes\unitraj\UniTraj\unitraj>python data_analysis.py
C:\Users\xxxx.conda\envs\unitraj\lib\site-packages\hydra_internal\defaults_list.py:251: UserWarning: In 'config': Defaults list is missing
_self_
. See https://hydra.cc/docs/1.2/upgrades/1.0_to_1.1/default_composition_order for more informationwarnings.warn(msg, UserWarning)
Loading training data...
Warning: cache path ./cache\nuscenes\data_samples already exists, skip
Loaded 61 samples from data_samples/nuscenes
Data loaded
Error executing job with overrides: []
Traceback (most recent call last):
File "D:\Coding\Python\nuScenes\unitraj\UniTraj\unitraj\data_analysis.py", line 22, in data_analysis
train_batch_size = max(cfg.method['train_batch_size'] // len(cfg.devices) // train_set.data_chunk_size, 1)
AttributeError: 'AutoBotDataset' object has no attribute 'data_chunk_size'
Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace.
I’d like to understand what I might have missed. Is there a manual or documentation I can refer to for running python data_analysis.py properly?
The text was updated successfully, but these errors were encountered: