Skip to content

Commit ee3882a

Browse files
feat: update .gitignore
1 parent c7b1273 commit ee3882a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
__pycache__
44

55
samples
6+
settings.py
67

78
*.pth
89
*.png
910
*.jpg
10-
*.jpeg
11+
*.jpeg
12+
13+
post_linkedin

settings/settings.example.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
DATA_PATH = './dataset/train'
2+
VALID_DATA_PATH = './dataset/valid'
3+
PATH_SAVED_MODEL = './autoencoder_checkpoint.pth'
4+
PATH_SAVED_SAMPLES = './training'
5+
PATH_PARAMS_JSON = './json/params.json'
6+
7+
# COPY RANDOMIC FILES
8+
COPY_SOURCE_FOLDER = '__source_images_folder_path__'
9+
10+
TRAIN_PERCENTAGE = 0.7
11+
VALID_PERCENTAGE = 0.3
12+
13+
COPY_FIXED_NUMBER_TO_COPY = 32

0 commit comments

Comments
 (0)