mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
missing import
This commit is contained in:
parent
0d4cc63b76
commit
6a4f68a055
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,8 @@ import matplotlib.pyplot as plt
|
|||
|
||||
import tensorflow as tf
|
||||
|
||||
from lib.dataset.dataset_mono import dataset_mono
|
||||
|
||||
IMAGE_SIZE = int(os.environ["IMAGE_SIZE"]) if "IMAGE_SIZE" in os.environ else 128 # was 512; 128 is the highest power of 2 that fits the data
|
||||
BATCH_SIZE = int(os.environ["BATCH_SIZE"]) if "BATCH_SIZE" in os.environ else 64
|
||||
NUM_CLASSES = 2
|
||||
|
|
Loading…
Reference in a new issue