added some notes

This commit is contained in:
Aladdin Persson
2021-02-04 13:39:41 +01:00
parent fa6ab9161e
commit 2d876db44c
11 changed files with 191 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
download the data from kaggle and put in folders similar to the video, specifically you should have 4
folders:
- train_images
- train_masks
- val_images
- val_masks

View File

@@ -0,0 +1 @@
it will put some saved preds here so you can see how it looks like

View File

@@ -22,7 +22,7 @@ NUM_WORKERS = 2
IMAGE_HEIGHT = 160 # 1280 originally
IMAGE_WIDTH = 240 # 1918 originally
PIN_MEMORY = True
LOAD_MODEL = True
LOAD_MODEL = False
TRAIN_IMG_DIR = "data/train_images/"
TRAIN_MASK_DIR = "data/train_masks/"
VAL_IMG_DIR = "data/val_images/"