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
When I encountered the above bug, I started debugging and found:
(Pdb) p self.builder_configs
{'sDCI_full': DCIConfig(name='sDCI_full', version=0.0.0, data_dir=None, data_files=None, description='sDCI full prompt set')}
(Pdb) p self.DEFAULT_CONFIG_NAME
'sDCI'
The source code is as follows. Its location is in anaconda3/envs/deepcom/lib/python3.12/site-packages/datasets/builder.py. if config_name is None and self.BUILDER_CONFIGS: print("self.DEFAULT_CONFIG_NAME:", self.DEFAULT_CONFIG_NAME) import pdb pdb.set_trace() if self.DEFAULT_CONFIG_NAME is not None: builder_config = self.builder_configs.get(self.DEFAULT_CONFIG_NAME) [logger.info](https://logger.info/)(f"No config specified, defaulting to: {self.dataset_name}/{builder_config.name}") else:
Please tell me how I should modify it to make the code run through.
The text was updated successfully, but these errors were encountered:
When I encountered the above bug, I started debugging and found:
(Pdb) p self.builder_configs
{'sDCI_full': DCIConfig(name='sDCI_full', version=0.0.0, data_dir=None, data_files=None, description='sDCI full prompt set')}
(Pdb) p self.DEFAULT_CONFIG_NAME
'sDCI'
The source code is as follows. Its location is in anaconda3/envs/deepcom/lib/python3.12/site-packages/datasets/builder.py.
if config_name is None and self.BUILDER_CONFIGS: print("self.DEFAULT_CONFIG_NAME:", self.DEFAULT_CONFIG_NAME) import pdb pdb.set_trace() if self.DEFAULT_CONFIG_NAME is not None: builder_config = self.builder_configs.get(self.DEFAULT_CONFIG_NAME) [logger.info](https://logger.info/)(f"No config specified, defaulting to: {self.dataset_name}/{builder_config.name}") else:
Please tell me how I should modify it to make the code run through.
The text was updated successfully, but these errors were encountered: