Skip to content

Commit

Permalink
update outpaint, dataloder, add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
bendangnuksung committed Jul 28, 2018
1 parent be555ff commit a9b5e5f
Show file tree
Hide file tree
Showing 6 changed files with 251 additions and 244 deletions.
1 change: 1 addition & 0 deletions checkpoint/.gitignore
@@ -0,0 +1 @@
*
1 change: 1 addition & 0 deletions data/prepared_data/.gitignore
@@ -0,0 +1 @@
*
1 change: 1 addition & 0 deletions data/raw_data/.gitignore
@@ -0,0 +1 @@
*
4 changes: 3 additions & 1 deletion dataloader.py
Expand Up @@ -3,7 +3,8 @@
from random import shuffle


DATA_PATH = "data/prepared_data"
DATA_PATH = "data/prepared_data/"
# DATA_PATH = "data/temp1/"


class Data():
Expand All @@ -20,6 +21,7 @@ def _load_data(self):
self.X = []
for data in datas:
self.X.append(data)
shuffle(self.X)
self.X = np.asarray(self.X)
self.file_counter += 1

Expand Down

0 comments on commit a9b5e5f

Please sign in to comment.