Skip to content

Commit

Permalink
Fix: data path correction (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coco58323 authored Jun 17, 2024
1 parent e6fc23a commit 098c23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/SEED_DE.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
for sub in range(15):
for exp in range(3):
data = []
mat_path = os.path.join(data_path, filenames[sub * 3 + exp])
mat_path = filenames[sub * 3 + exp]
print(mat_path)
T = sio.loadmat(mat_path)

Expand Down

0 comments on commit 098c23a

Please sign in to comment.