2022-08-10 18:03:25 +00:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
|
2022-09-14 16:14:04 +00:00
|
|
|
from loguru import logger
|
2022-08-10 18:03:25 +00:00
|
|
|
import tensorflow as tf
|
|
|
|
|
2022-09-15 18:16:38 +00:00
|
|
|
from ..dataset.batched_iterator import batched_iterator
|
|
|
|
|
2022-08-11 17:26:28 +00:00
|
|
|
from ..io.find_paramsjson import find_paramsjson
|
2022-08-10 18:03:25 +00:00
|
|
|
from ..io.readfile import readfile
|
|
|
|
from ..io.writefile import writefile
|
|
|
|
|
|
|
|
from .model_rainfallwater_contrastive import model_rainfallwater_contrastive
|
|
|
|
from .helpers import make_callbacks
|
|
|
|
from .helpers import summarywriter
|
|
|
|
from .components.LayerContrastiveEncoder import LayerContrastiveEncoder
|
2022-09-27 14:54:37 +00:00
|
|
|
from .components.LayerConvNeXtGamma import LayerConvNeXtGamma
|
2022-08-10 18:03:25 +00:00
|
|
|
from .components.LayerCheeseMultipleOut import LayerCheeseMultipleOut
|
|
|
|
from .helpers.summarywriter import summarywriter
|
|
|
|
|
|
|
|
class RainfallWaterContraster(object):
|
|
|
|
def __init__(self, dir_output=None, filepath_checkpoint=None, epochs=50, batch_size=64, **kwargs):
|
|
|
|
super(RainfallWaterContraster, self).__init__()
|
|
|
|
|
|
|
|
self.dir_output = dir_output
|
|
|
|
self.epochs = epochs
|
|
|
|
self.kwargs = kwargs
|
|
|
|
self.batch_size = batch_size
|
|
|
|
|
|
|
|
|
|
|
|
if filepath_checkpoint == None:
|
|
|
|
if self.dir_output == None:
|
|
|
|
raise Exception("Error: dir_output was not specified, and since no checkpoint was loaded training mode is activated.")
|
|
|
|
if not os.path.exists(self.dir_output):
|
|
|
|
os.mkdir(self.dir_output)
|
|
|
|
|
|
|
|
self.filepath_summary = os.path.join(self.dir_output, "summary.txt")
|
|
|
|
|
2022-09-02 16:31:19 +00:00
|
|
|
writefile(self.filepath_summary, "") # Empty the file ahead of time
|
2022-09-06 18:48:46 +00:00
|
|
|
self.make_model()
|
2022-09-02 16:31:19 +00:00
|
|
|
|
2022-09-02 16:28:00 +00:00
|
|
|
summarywriter(self.model, self.filepath_summary, append=True)
|
2022-09-01 15:21:52 +00:00
|
|
|
writefile(os.path.join(self.dir_output, "params.json"), json.dumps(self.get_config()))
|
2022-08-10 18:03:25 +00:00
|
|
|
else:
|
2022-09-06 18:48:46 +00:00
|
|
|
self.load_model(filepath_checkpoint)
|
2022-08-10 18:03:25 +00:00
|
|
|
|
2022-08-11 17:26:28 +00:00
|
|
|
def get_config(self):
|
|
|
|
return {
|
|
|
|
"epochs": self.epochs,
|
|
|
|
"batch_size": self.batch_size,
|
|
|
|
**self.kwargs
|
|
|
|
}
|
2022-08-10 18:03:25 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2022-09-14 16:11:06 +00:00
|
|
|
def from_checkpoint(filepath_checkpoint, **hyperparams):
|
2022-09-14 16:14:04 +00:00
|
|
|
logger.info(f"Loading from checkpoint: {filepath_checkpoint}")
|
2022-08-10 18:03:25 +00:00
|
|
|
return RainfallWaterContraster(filepath_checkpoint=filepath_checkpoint, **hyperparams)
|
|
|
|
|
2022-08-11 17:26:28 +00:00
|
|
|
|
2022-08-10 18:03:25 +00:00
|
|
|
def make_model(self):
|
2022-09-06 18:48:46 +00:00
|
|
|
self.model, self.model_predict = model_rainfallwater_contrastive(
|
2022-09-02 17:39:24 +00:00
|
|
|
batch_size=self.batch_size,
|
|
|
|
summary_file=self.filepath_summary,
|
|
|
|
**self.kwargs
|
|
|
|
)
|
2022-08-10 18:03:25 +00:00
|
|
|
|
2022-08-11 17:26:28 +00:00
|
|
|
|
2022-08-10 18:03:25 +00:00
|
|
|
def load_model(self, filepath_checkpoint):
|
|
|
|
"""
|
|
|
|
Loads a saved model from the given filename.
|
|
|
|
filepath_checkpoint (string): The filepath to load the saved model from.
|
|
|
|
"""
|
|
|
|
|
2022-09-06 18:48:46 +00:00
|
|
|
self.model_predict = tf.keras.models.load_model(filepath_checkpoint, custom_objects={
|
2022-08-10 18:03:25 +00:00
|
|
|
"LayerContrastiveEncoder": LayerContrastiveEncoder,
|
2022-09-27 14:53:52 +00:00
|
|
|
"LayerConvNeXtGamma": LayerConvNeXtGamma,
|
2022-08-10 18:03:25 +00:00
|
|
|
"LayerCheeseMultipleOut": LayerCheeseMultipleOut
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def train(self, dataset_train, dataset_validate):
|
|
|
|
return self.model.fit(
|
|
|
|
dataset_train,
|
|
|
|
validation_data=dataset_validate,
|
|
|
|
epochs=self.epochs,
|
2022-09-06 18:48:46 +00:00
|
|
|
callbacks=make_callbacks(self.dir_output, self.model_predict),
|
|
|
|
steps_per_epoch=10 # For testing
|
2022-08-10 18:03:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def embed(self, dataset):
|
|
|
|
i_batch = -1
|
2022-09-16 14:51:26 +00:00
|
|
|
for batch in batched_iterator(dataset, tensors_in_item=2, batch_size=self.batch_size):
|
2022-08-10 18:03:25 +00:00
|
|
|
i_batch += 1
|
2022-09-16 15:02:27 +00:00
|
|
|
rainfall = self.model_predict(batch[0], training=False) # ((rainfall, water), dummy_label)
|
2022-09-27 15:59:31 +00:00
|
|
|
rainfall = tf.unstack(rainfall, axis=0)
|
|
|
|
water = tf.unstack(batch[1], axis=0)
|
|
|
|
for step_rainfall, step_water in zip(rainfall, water):
|
|
|
|
yield step_rainfall, step_water
|
2022-08-10 18:03:25 +00:00
|
|
|
|
2022-09-06 18:48:46 +00:00
|
|
|
|
2022-09-14 16:37:48 +00:00
|
|
|
# def embed_rainfall(self, dataset):
|
|
|
|
# result = []
|
|
|
|
# for batch in dataset:
|
|
|
|
# result_batch = self.model_predict(batch)
|
|
|
|
# result.extend(tf.unstack(result_batch, axis=0))
|
|
|
|
# return result
|