yfyangd commited on
Commit
97b1b16
1 Parent(s): 4c34810

Update DataGenerator.py

Browse files
Files changed (1) hide show
  1. DataGenerator.py +2 -2
DataGenerator.py CHANGED
@@ -18,8 +18,8 @@ import matplotlib.pyplot as plt
18
 
19
  def Data_Generator():
20
  list_test = []
21
- for j in os.listdir('./test/'):
22
- list_test.append('./test/'+j)
23
  fname = list_test[0]
24
  return fname
25
 
18
 
19
  def Data_Generator():
20
  list_test = []
21
+ for j in os.listdir('./'):
22
+ list_test.append('./'+j)
23
  fname = list_test[0]
24
  return fname
25