.. note:: This tutorial was generated from a Jupyter notebook that can be accessed `here `_. QoI-aware encoder-decoders employing Partition of Unity Networks (POUnets) =================================================================================== This demo takes the general formulation of QoI-aware encoder-decoders available in PCAfold and implements POUnets as the decoder. .. code:: python from PCAfold import QoIAwareProjectionPOUnet, init_uniform_partitions, PCA, center_scale, PartitionOfUnityNetwork import numpy as np import matplotlib.pyplot as plt import tensorflow.compat.v1 as tf We will load the combustion dataset and remove temperature from the state variable list. .. code:: python X = np.genfromtxt('H2-air-state-space.csv', delimiter=',')[:,1:-2] S_X = np.genfromtxt('H2-air-state-space-sources.csv', delimiter=',')[:,1:-2] X_names = np.genfromtxt('H2-air-state-space-names.csv', delimiter='\n', dtype=str)[1:-2] X_names .. parsed-literal:: array(['H', 'H2', 'O', 'OH', 'H2O', 'O2', 'HO2', 'H2O2'], dtype='