File size: 16,189 Bytes
989c6ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | #
# Copyright (c) 2017-18 Jonathan Weyn <jweyn@uw.edu>
#
# See the file LICENSE for your rights.
#
"""
DLWP utilities.
"""
import pickle
import random
import re
import tempfile
from importlib import import_module
from copy import copy
import numpy as np
import pandas as pd
from tensorflow.keras import models as keras_models
from tensorflow.keras.utils import multi_gpu_model
# ==================================================================================================================== #
# General utility functions
# ==================================================================================================================== #
def make_keras_picklable():
"""
Thanks to http://zachmoshe.com/2017/04/03/pickling-keras-models.html
"""
def __getstate__(self):
model_str = ""
with tempfile.NamedTemporaryFile(suffix='.hdf5', delete=True) as fd:
keras_models.save_model(self, fd.name, overwrite=True)
model_str = fd.read()
d = {'model_str': model_str}
return d
def __setstate__(self, state):
with tempfile.NamedTemporaryFile(suffix='.hdf5', delete=True) as fd:
fd.write(state['model_str'])
fd.flush()
model = keras_models.load_model(fd.name)
self.__dict__ = model.__dict__
cls = keras_models.Model
cls.__getstate__ = __getstate__
cls.__setstate__ = __setstate__
def get_object(module_class):
"""
Given a string with a module class name, it imports and returns the class.
This function (c) Tom Keffer, weeWX; modified by Jonathan Weyn.
"""
# Split the path into its parts
parts = module_class.split('.')
# Get the top level module
module = parts[0] # '.'.join(parts[:-1])
# Import the top level module
mod = __import__(module)
# Recursively work down from the top level module to the class name.
# Be prepared to catch an exception if something cannot be found.
try:
for part in parts[1:]:
module = '.'.join([module, part])
# Import each successive module
__import__(module)
mod = getattr(mod, part)
except ImportError as e:
# Can't find a recursive module. Give a more informative error message:
raise ImportError("'%s' raised when searching for %s" % (str(e), module))
except AttributeError:
# Can't find the last attribute. Give a more informative error message:
raise AttributeError("Module '%s' has no attribute '%s' when searching for '%s'" %
(mod.__name__, part, module_class))
return mod
def get_from_class(module_name, class_name):
"""
Given a module name and a class name, return an object corresponding to the class retrieved as in
`from module_class import class_name`.
:param module_name: str: name of module (may have . attributes)
:param class_name: str: name of class
:return: object pointer to class
"""
mod = __import__(module_name, fromlist=[class_name])
class_obj = getattr(mod, class_name)
return class_obj
def get_classes(module_name):
"""
From a given module name, return a dictionary {class_name: class_object} of its classes.
:param module_name: str: name of module to import
:return: dict: {class_name: class_object} pairs in the module
"""
module = import_module(module_name)
classes = {}
for key in dir(module):
if isinstance(getattr(module, key), type):
classes[key] = get_from_class(module_name, key)
return classes
def get_methods(module_name):
"""
From a given module name, return a dictionary {method_name: method_object} of its methods.
:param module_name: str: name of module to import
:return: dict: {method_name: method_object} pairs in the module
"""
module = import_module(module_name)
methods = {}
for key in dir(module):
if callable(getattr(module, key)):
methods[key] = get_from_class(module_name, key)
return methods
def save_model(model, file_name, history=None):
"""
Saves a class instance with a 'model' attribute to disk. Creates two files: one pickle file containing no model
saved as ${file_name}.pkl and one for the model saved as ${file_name}.keras. Use the `load_model()` method to load
a model saved with this method.
:param model: model instance (with a 'model' attribute) to save
:param file_name: str: base name of save files
:param history: history from Keras fitting, or None
:return:
"""
# Save the model structure and weights
if hasattr(model, 'base_model'):
model.base_model.save('%s.keras' % file_name)
else:
model.model.save('%s.keras' % file_name)
# Create a picklable copy of the DLWP model object excluding the keras model
model_copy = copy(model)
model_copy.model = None
if hasattr(model, 'base_model'):
model_copy.base_model = None
# Save the pickled DLWP object
with open('%s.pkl' % file_name, 'wb') as f:
pickle.dump(model_copy, f, protocol=pickle.HIGHEST_PROTOCOL)
# Save the history, if requested
if history is not None:
with open('%s.history' % file_name, 'wb') as f:
pickle.dump(history.history, f, protocol=pickle.HIGHEST_PROTOCOL)
def load_model(file_name, history=False, custom_objects=None, gpus=1):
"""
Loads a model saved to disk with the `save_model()` method.
:param file_name: str: base name of save files
:param history: bool: if True, loads the history file along with the model
:param custom_objects: dict: any custom functions or classes to be included when Keras loads the model. There is
no need to add objects in DLWP.custom as those are added automatically.
:param gpus: int: load the model onto this number of GPUs
:return: model [, dict]: loaded object [, dictionary of training history]
"""
# Load the pickled DLWP object
with open('%s.pkl' % file_name, 'rb') as f:
model = pickle.load(f)
# Load the saved keras model weights
custom_objects = custom_objects or {}
custom_objects.update(get_classes('DLWP.custom'))
custom_objects.update(get_methods('DLWP.custom'))
loaded_model = keras_models.load_model('%s.keras' % file_name, custom_objects=custom_objects, compile=True)
# If multiple GPUs are requested, copy the model to the GPUs
if gpus > 1:
import tensorflow as tf
with tf.device('/cpu:0'):
model.base_model = keras_models.clone_model(loaded_model)
model.base_model.set_weights(loaded_model.get_weights())
model.model = multi_gpu_model(model.base_model, gpus=gpus)
model.gpus = gpus
else:
model.base_model = loaded_model
model.model = model.base_model
# Also load the history file, if requested
if history:
with open('%s.history' % file_name, 'rb') as f:
h = pickle.load(f)
return model, h
else:
return model
def save_torch_model(model, file_name, history=None):
"""
Saves a DLWPTorchNN model to disk. Creates two files: one pickle file containing the DLWPTorchNN wrapper, saved as
${file_name}.pkl, and one for the model saved as ${file_name}.torch. Use the `load_torch_model()` method to load
a model saved with this method.
:param model: DLWPTorchNN or other torch model to save
:param file_name: str: base name of save files
:param history: history of model to save; optional
:return:
"""
import torch
torch.save(model.model, '%s.torch' % file_name)
model_copy = copy(model)
model_copy.model = None
with open('%s.pkl' % file_name, 'wb') as f:
pickle.dump(model_copy, f, protocol=pickle.HIGHEST_PROTOCOL)
if history is not None:
with open('%s.history' % file_name, 'wb') as f:
pickle.dump(history, f, protocol=pickle.HIGHEST_PROTOCOL)
def load_torch_model(file_name, history=False):
"""
Loads a DLWPTorchNN or other model using Torch saved to disk with the `save_torch_model()` method.
:param file_name: str: base name of save files
:param history: bool: if True, loads the history file along with the model
:return: model [, dict]: loaded object [, dictionary of training history]\
"""
import torch
with open('%s.pkl' % file_name, 'rb') as f:
model = pickle.load(f)
model.model = torch.load('%s.torch' % file_name)
model.model.eval()
if history:
with open('%s.history' % file_name, 'rb') as f:
h = pickle.load(f)
return model, h
else:
return model
def delete_nan_samples(predictors, targets, large_fill_value=False, threshold=None):
"""
Delete any samples from the predictor and target numpy arrays and return new, reduced versions.
:param predictors: ndarray, shape [num_samples,...]: predictor data
:param targets: ndarray, shape [num_samples,...]: target data
:param large_fill_value: bool: if True, treats very large values (>= 1e20) as NaNs
:param threshold: float 0-1: if not None, then removes any samples with a fraction of NaN larger than this
:return: predictors, targets: ndarrays with samples removed
"""
if threshold is not None and not (0 <= threshold <= 1):
raise ValueError("'threshold' must be between 0 and 1")
if large_fill_value:
predictors[(predictors >= 1.e20) | (predictors <= -1.e20)] = np.nan
targets[(targets >= 1.e20) | (targets <= -1.e20)] = np.nan
p_shape = predictors.shape
t_shape = targets.shape
predictors = predictors.reshape((p_shape[0], -1))
targets = targets.reshape((t_shape[0], -1))
if threshold is None:
p_ind = list(np.where(np.isnan(predictors))[0])
t_ind = list(np.where(np.isnan(targets))[0])
else:
p_ind = list(np.where(np.mean(np.isnan(predictors), axis=1) >= threshold)[0])
t_ind = list(np.where(np.mean(np.isnan(targets), axis=1) >= threshold)[0])
bad_ind = list(set(p_ind + t_ind))
predictors = np.delete(predictors, bad_ind, axis=0)
targets = np.delete(targets, bad_ind, axis=0)
new_p_shape = (predictors.shape[0],) + p_shape[1:]
new_t_shape = (targets.shape[0],) + t_shape[1:]
return predictors.reshape(new_p_shape), targets.reshape(new_t_shape)
def train_test_split_ind(n_sample, test_size, method='random'):
"""
Return indices splitting n_samples into train and test index lists.
:param n_sample: int: number of samples
:param test_size: int: number of samples in test set
:param method: str: 'first' ('last') to take first (last) t samples as test, or 'random'
:return: (list, list): list of train indices, list of test indices
"""
if method == 'first':
test_set = list(range(0, test_size))
train_set = list(range(test_size, n_sample))
elif method == 'last':
test_set = list(range(n_sample - test_size, n_sample))
train_set = list(range(0, n_sample - test_size))
elif method == 'random':
train_set = list(range(n_sample))
test_set = []
for j in range(test_size):
i = random.choice(train_set)
test_set.append(i)
train_set.remove(i)
test_set.sort()
else:
raise ValueError("'method' must be 'first', 'last', or 'random'")
return train_set, test_set
def day_of_year(date):
year_start = pd.Timestamp(date.year, 1, 1)
return (date - year_start).total_seconds() / 3600. / 24.
def insolation(dates, lat, lon, S=1., daily=False):
"""
Calculate the approximate solar insolation for given dates
:param dates: 1d array: datetime or Timestamp
:param lat: 1d or 2d array of latitudes
:param lon: 1d or 2d array of longitudes (0-360º). If 2d, must match the shape of lat.
:param S: float: scaling factor (solar constant)
:param daily: bool: if True, return the daily max solar radiation (lat and day of year dependent only)
:return: 3d array: insolation (date, lat, lon)
"""
try:
assert len(lat.shape) == len(lon.shape)
except AssertionError:
raise ValueError("'lat' and 'lon' must either both be 1d or both be 2d'")
if len(lat.shape) >= 2:
try:
assert lat.shape == lon.shape
except AssertionError:
raise ValueError("shape mismatch between lat (%s) and lon (%s)" % (lat.shape, lon.shape))
if len(lat.shape) == 1:
lon, lat = np.meshgrid(lon, lat)
n_dim = len(lat.shape)
# Constants for year 1995 (standard)
eps = 23.4441 * np.pi / 180.
ecc = 0.016715
om = 282.7 * np.pi / 180.
beta = np.sqrt(1 - ecc ** 2.)
# Get the day of year. Ignore leap days.
days = pd.Series(dates)
days = days.apply(day_of_year)
days_arr = days.values.copy().astype(np.float32)
for d in range(n_dim):
days_arr = np.expand_dims(days_arr, -1)
# For daily max values, set the day to 0.5 and the longitude everywhere to 0 (this is approx noon)
if daily:
days_arr = 0.5 + np.round(days_arr)
new_lon = lon.copy().astype(np.float32)
new_lon[:] = 0.
else:
new_lon = lon.astype(np.float32)
# Longitude of the earth relative to the orbit, 1st order approximation
lambda_m0 = ecc * (1. + beta) * np.sin(om)
lambda_m = lambda_m0 + 2. * np.pi * (days_arr - 80.5) / 365.
lambda_ = lambda_m + 2. * ecc * np.sin(lambda_m - om)
# Solar declination
dec = np.arcsin(np.sin(eps) * np.sin(lambda_))
# Hour angle
h = 2 * np.pi * (days_arr + new_lon / 360.)
# Distance
rho = (1. - ecc ** 2.) / (1. + ecc * np.cos(lambda_ - om))
# Insolation
sol = S * (np.sin(np.pi / 180. * lat[None, ...]) * np.sin(dec) -
np.cos(np.pi / 180. * lat[None, ...]) * np.cos(dec) * np.cos(h)) * rho ** -2.
sol[sol < 0.] = 0.
return sol.astype(np.float32)
def to_chunked_dataset(ds, chunking):
"""
Create a chunked copy of a Dataset with proper encoding for netCDF export.
:param ds: xarray.Dataset
:param chunking: dict: chunking dictionary as passed to xarray.Dataset.chunk()
:return: xarray.Dataset: chunked copy of ds with proper encoding
"""
chunk_dict = dict(ds.dims)
chunk_dict.update(chunking)
ds_new = ds.chunk(chunk_dict)
for var in ds_new.data_vars:
ds_new[var].encoding['contiguous'] = False
ds_new[var].encoding['original_shape'] = ds_new[var].shape
ds_new[var].encoding['chunksizes'] = tuple([c[0] for c in ds_new[var].chunks])
return ds_new
def to_bool(x):
"""Convert an object to boolean.
Examples:
>>> print to_bool('TRUE')
True
>>> print to_bool(True)
True
>>> print to_bool(1)
True
>>> print to_bool('FALSE')
False
>>> print to_bool(False)
False
>>> print to_bool(0)
False
>>> print to_bool('Foo')
Traceback (most recent call last):
ValueError: Unknown boolean specifier: 'Foo'.
>>> print to_bool(None)
Traceback (most recent call last):
ValueError: Unknown boolean specifier: 'None'.
This function (c) Tom Keffer, weeWX.
"""
try:
if x.lower() in ['true', 'yes']:
return True
elif x.lower() in ['false', 'no']:
return False
except AttributeError:
pass
try:
return bool(int(x))
except (ValueError, TypeError):
pass
raise ValueError("Unknown boolean specifier: '%s'." % x)
def remove_chars(s):
"""
Remove characters from a string that have unintended effects on file paths.
:param s: str
:return: str
"""
return ''.join(re.split('[$/\\\\]', s))
def is_channels_last(model):
"""
Programmatically determine whether a DLWP model, likely loaded from disk, uses channels_last data format.
:param model: DLWPNeuralNet or DLWPFunctional instance
:return: bool: True if the model uses channels_last data format
"""
for layer in model.model.layers:
if hasattr(layer, 'data_format'):
return layer.data_format == 'channels_last'
return False
|