Skip to content

Commit 044a881

Browse files
authored
Update data_factory.py: fix data_path
1 parent cbf3318 commit 044a881

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ltsm/data_provider/data_factory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def __get_prompt(self, prompt_data_path:str, data_name: str, idx_file_name: str)
110110
idx_file_name = idx_file_name.replace("/", "-")
111111

112112
# Certain characters cannot be used in file names
113-
idx_file_name = idx_file_name.replace("**", "_")
114-
idx_file_name = idx_file_name.replace("%", "_")
113+
# idx_file_name = idx_file_name.replace("**", "_")
114+
# idx_file_name = idx_file_name.replace("%", "_")
115115

116116
if os.path.split(os.path.dirname(data_name))[-1] == "monash":
117117
# Monash

0 commit comments

Comments
 (0)