We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7b1273 commit ee3882aCopy full SHA for ee3882a
.gitignore
@@ -3,8 +3,11 @@
3
__pycache__
4
5
samples
6
+settings.py
7
8
*.pth
9
*.png
10
*.jpg
-*.jpeg
11
+*.jpeg
12
+
13
+post_linkedin
settings/settings.example.py
@@ -0,0 +1,13 @@
1
+DATA_PATH = './dataset/train'
2
+VALID_DATA_PATH = './dataset/valid'
+PATH_SAVED_MODEL = './autoencoder_checkpoint.pth'
+PATH_SAVED_SAMPLES = './training'
+PATH_PARAMS_JSON = './json/params.json'
+# COPY RANDOMIC FILES
+COPY_SOURCE_FOLDER = '__source_images_folder_path__'
+TRAIN_PERCENTAGE = 0.7
+VALID_PERCENTAGE = 0.3
+COPY_FIXED_NUMBER_TO_COPY = 32
0 commit comments