Proof of concept for twinn-ml-interface with model pipeline for predicting water throughput in ruhr river.
Project description
DARROW-POC
Documentation and code for onboarding a timeseries machine learning model to the darrow-ml-platform
. The darrow-ml-platform
is the infrastructure to deploy machine learning models for the DARROW
project, train models and make predictions. You can use the example model POCAnomaly
in models/poc.py
as a starting point for onboarding your own models.
Author: Royal HaskoningDHV
Email: ruud.kassing@rhdhv.com, miguel.hernandez@rhdhv.com, steffen.burgers@rhdhv.com, pierpaolo.lucarelli@rhdhv.com
Hierarchy data model
The data hierarchy is represented by a rooted tree that mimics the real world (usually physical) relationships inherent in the data. This is easiest to understand with an example:
In this example, a tenant named Alice manages a wastewater treatment plant (WWTP) with two lines with various components and equipment, such as aeration blowers and pumps.
This tree is not just represented in the figure, but also in the code used by the darrow platform. That is, there are specific UNIT
objects and others (in twinn_ml_interface/objectmodels/hierarchy.py
) that are used to define a rooted tree consisting of one parent node (tenant), with one or more children nodes (in this case WWTP), which can again have one or more children nodes (in this case lines) etc.
You will not need to create this tree yourself, this should be decided together with the consortium partners. Nevertheless, when creating your own ModelInterfaceV4
compliant model keeping this structure in mind is useful. Below we will go into more depth about how the ModelInterfaceV4
relates to this rooted tree hierarchy.
ModelInterfaceV4
: A contract between models and infrastructure
ModelInterfaceV4
is a python Protocol. That means, it specifies exactly what methods or attributes need to be defined, which parameters need to be inputted and what needs to be returned by methods of a class. Unlike a Base class, it does not allow for inheritance. Because of this it also does not have an __init__()
method. You can think of it as a recipe to follow.
We think of ModelInterfaceV4
as a contract between the machine learning models and the cloud infrastructure in which they run, because as long as a model adheres to the protocol ModelInterfaceV4
, it will work in the infrastructure. To verify if a class follows the contract an isinstance
check of the form isinstance(myclass, myprotocol)
can be performed. For ModelInterfaceV4
, we are using a modified version of Protocol
, called AnnotationProtocol
from the annotation-protocol
package. It allows for more thorough isinstance
checks, also checking all type annotations. An example implementation for how to test ModelInterfaceV4
compliance can be found in tests/test_inteface.py
.
Proof of concept / example model
This repository contains an example model called POCAnomaly
(in models/poc.py
) adhering to ModelInterfaceV4
. It is an anomaly detection model that takes sensor data as input returns a boolean series denoting anomalies. Of course, the purpose of the machine learning model here is not important. Instead, we aim to show how a machine learning model can be onboarded onto the darrow-ml-platform
(or at least be prepared for onboarding by complying to the data contract).
We also included a local Executor of the model in mocks/mocks.py
, which mimicks how a real executor would execute model training or predicting on the darrow-ml-platform
infrastructure.
How ModelInterfaceV4
relates to the hierarchy
While the ModelInterfaceV4
protocol is not terribly complex, it contains a number of custom types
and Enums
, which often relate to the rooted tree data model and might take some getting used to. Consider the Node
object from the objectmodels.hierarchy
module:
@dataclass
class Node:
val: Unit
parent: Node | None = None
children: list[Node] | None = None
It has a value, which is of type Unit
, a parent, which is also a Node
(or None
), and children Nodes. These nodes are the building blocks for the hierarchy. Let's investigate the Unit
class:
@dataclass
class Unit:
unit_code: str
unit_type_code: str
active: bool
name: str | None = None
unit_type_name: str | None = None
geometry: dict[str, list[float]] | None = None
properties: list | None = None
metadata: dict | None = None
def __hash__(self):
return hash(self.unit_code)
def __eq__(self, other):
if isinstance(other, Unit):
return self.unit_code == other.unit_code
return NotImplemented
This looks a bit more complicated, but it basically contains all the information about a given Node
or Unit
that we might have, besides the actual timeseries data. A simple unit definition could look like this:
Unit(
unit_code="stah",
unit_type_code="DISCHARGE_STATION",
active=True,
)
While you do not have to define any tree structure yourself it is still useful to have an idea about these classes, since we have to define a number of related ones when onboarding our model to ModelInterfaceV4
.
Deep dive into ModelInterfaceV4
Let's have a look at what we need to define to make our model ModelInterfaceV4
compliant. For illustration purposes let's just use the proof of concept model from this repository. We want to onboard an anomaly detection model, defined in models.anomaly_detection
. But before we get to that we should have a quick look at our data.
POC Hierarchy
This is an illustration of our rooted_tree hierarchy. In this case we do not have any meta-data and we have a single timeseries per measurement station.
Data
The data for this proof of concept looks as follows, where altenburg1
is one of the station names (unit_code
), which has a sensor that measures water discharge
(this is a timeseries tag
). There are multiple of these stations, plus two rainfall stations with sensors of type precipitation
and one evaporation station with a sensor of type evaporation
. Each datapoint needs to have both ID
and TYPE
specified, even if all sensors have the same TYPE
. Here, stations end up being the ID
and sensor types end up being the TYPE
.
TIME | ID | VALUE | TYPE |
---|---|---|---|
2018-01-01 00:00:00+00:00 | altenburg1 | 33.22525 | discharge |
2018-01-01 01:00:00+00:00 | altenburg1 | 5234 | discharge |
The data above is following the SAM
long-format, which is also how the data is currently saved in tests/testing_data/*.parquet
. In practice, the data will be connected via an ADX
store and be read in following the InputData
format. In that format each sensor is read in separately as a pandas.DataFrame
. If you are curious about this format you can checkout the class in twinn-ml-interface/input_data/input_data.py
. Here, we create this data format from SAM
long format in the mock executor (mocks/mocks.py
).
Implementing methods of ModelInterfaceV4
Methods you need to write an implementation for
All methods in ModelInterfaceV4
need to be present for our model class to be compliant with the data contract. However, if we do not want to use a particular method, we can have it do nothing. Some methods, however do have to be implemented and return a particular output - let's look at those first.
@staticmethod
def get_target_template() -> UnitTagTemplate | UnitTag:
return UnitTag(Unit("STAH", "DISCHARGE_STATION", True), Tag("DISCHARGE"))
The method get_target_template()
returns either a UnitTagTemplate
or a UnitTag
and thereby specifies the target variable of our machine learning model. The latter is somewhat simpler and used in this example. We basically specify the connection between our target unit, which has unit_code='STAH'
and unit_type_code='DISCHARGE_STATION'
, and the timeseries or sensor data we would like to get, which is given by the tag
"DISCHARGE"
. The unit information can be seen also in the rooted tree above. The tag label refers to the TYPE
used in the data.
Next let's look at the get_data_config_template()
method, which determines what data to select for our machine learning model besides the target.
@staticmethod
def get_data_config_template() -> list[DataLabelConfigTemplate]:
return [
DataLabelConfigTemplate(
data_level=DataLevel.SENSOR,
unit_tag_templates=[
UnitTag.from_string("altenburg1:disc"),
UnitTag.from_string("eschweiler:disc"),
UnitTag.from_string("herzogenrath1:disc"),
UnitTag.from_string("juelich:disc"),
UnitTag.from_string("stah:disc"),
UnitTag.from_string("evap:evap"),
UnitTag.from_string("middenroer:prec"),
UnitTag.from_string("urft:prec"),
],
),
]
There are again two possible implementations, both with list[DataLabelConfigTemplate]
as output. For illustration purposes we will show both. In the first (shown above) a list of UnitTag
objects, is passed to the unit_tag_templates
attribute. We have seen this in the previous method, but there is an alternative way to implement it, using the from_string
class method. We specify only the unit_tag
, which is a combination between unit_code
and tag
, separated by a colon: "{unit_code}:{tag}"
. Note that DataLevel
is assigned arbitrarily as SENSOR
for now - once it becomes clear what data we handle within the DARROW
project we can update this.
In the below implementation we use UnitTagTemplate
instead of UnitTag
. This implementation is more complex, but takes advantage of relative paths in our rooted tree. The first DataLabelConfigTemplate
selects all units following the path RelativeType.PARENTS --> RelativeType.CHILDREN
starting from the target unit. In this case, we select all units on the same level as the target. We need two entries of DataLabelConfigTemplate
, because the first has datalevel SENSOR
, while the second has datalevel WEATHER
. A DataLevel
distinction is made, because datalevels can have different properties when retrieving the data. This is not obvious when loading the data into your model, but does matter for the backend / data retrieval process. It is probably best to check with RHDHV which datalevels you should use for which data source.
@staticmethod
def get_data_config_template() -> list[DataLabelConfigTemplate]:
return [
DataLabelConfigTemplate(
data_level=DataLevel.SENSOR,
unit_tag_templates=[UnitTagTemplate([RelativeType.PARENT, RelativeType.CHILDREN], [Tag("DISCHARGE")])],
availability_level=AvailabilityLevel.FILTER_UNTIL_NOW,
),
DataLabelConfigTemplate(
data_level=DataLevel.WEATHER,
unit_tag_templates=[
UnitTagTemplate([RelativeType.PARENT, RelativeType.CHILDREN], [Tag("PRECIPITATION"), Tag("EVAPORATION")])
],
availability_level=AvailabilityLevel.FILTER_UNTIL_NOW,
),
]
The next method to implement should now be relatively straightforward, it is the UnitTag
or UnitTagTemplate
for the model output/results.
@staticmethod
def get_result_template() -> UnitTagTemplate | UnitTag:
return UnitTag(Unit("STAHROER", "DISCHARGE_STATION", True), Tag("DISCHARGE_FORECAST"))
The next method is our way to initialize certain attributes and what would have been in the __init__()
, if a Protocol had one. We initialize the model and the corresponding MetaDataLogger
. We advise you to re-use this code and log things with the logger object in other methods you implement. The Configuration
is not something you need to worry about, since it will be taken care of by the infrastructure. Since you have it available, feel free to use it to query specific information (see the mock configuration in mocks.mocks.py
).
@classmethod
def initialize(cls, configuration: Configuration, logger: MetaDataLogger) -> ModelInterfaceV4:
model = cls(configuration.target_name)
model.configuration = configuration
model.logger = logger
return model
The train
method should implement the model training. Here, we first combine the input data into a pandas.DataFrame
in wide format. Next, we initialize our machine learning model, fit and evaluate it (which includes splitting into train and validation sets), and finally log some parameters to the MetaDataLogger
. These would later be logged to mlflow by the infrastructure if the model were to run non-locally. The trained model is saved as a hidden attribute in the POCAnomaly
class.
def train(self, input_data: InputData, **kwargs) -> None:
train = pd.concat(input_data.values(), axis=1)
validator = ValidationModel(
train,
model_type="lasso",
n_features=5,
use_precipitation_features=False,
training_end_date="2010-01-04 00:00:00",
)
_, num_obs, _, r2 = validator.fit_and_evaluate()
self.logger.log_params(validator.flatten_output(r2, "r2")) # This will be logged to mlflow
self.logger.log_params({f"samples_{k}": v for k, v in num_obs.items()})
self._model = validator
Conversely, the predict
method needs to implement the making of predictions with the trained model. Note that with the tiny amount of sample training data saved in this repository, the quality of predictions of our proof of concept model will be terrible.
def predict(self, input_data: InputData, **kwargs) -> list[pd.DataFrame]:
model = self._model
X = pd.concat(input_data.values(), axis=1)
X_removed_anomalies = model.predict(X)
return X_removed_anomalies
Finally, the dump
and load
methods need to be defined to be able to save and re-load the model. In this example, we simply dump to and reload from pickle
.
def dump(self, foldername: PathLike, filename: str) -> None:
with open(Path(foldername) / (filename + ".pkl"), "wb") as f:
pickle.dump(self, f)
return None
@classmethod
def load(
foldername: PathLike, filename: str, configuration: Configuration, logger: MetaDataLogger
) -> ModelInterfaceV4:
with open(Path(foldername) / (filename + ".pkl"), "rb") as f:
model = pickle.load(f)
return model
Methods you need to have, but do not need to implement
In principle, you can use the exact implementations given below if you do not want to add your own functionality. get_train_window_finder_config_template
is used to specify a (sub-)set of data used to perform data validation with validate_input_data
. Specifically, if implemented, the data specified in get_train_window_finder_config_template
will be checked against the code in validate_input_data
for a specific time period (this time period is a setting you have to provide to RHDHV, it is not directly accessible or changeable in the code). If the validation fails for that time period, the window is slid back in time by a certain amount and the validation is performed again. This sliding window approach is continued until validation passes or until a certain limit is reached. Again, the amount of sliding and the moment we stop trying another more historic time window are parameters that are not under your control via code.
preprocess
has its own implementation, because in the future we want to be able to perform separate actions for preprocessing compared to training or predicting, like for instance create a specific preprocessing log. Furthermore, it makes the structure of the model classes nicely modular, separating logic for preprocessing, training and predicting. Finally, preprocessing steps are likely repeated between validation, training and predictions - this part is up to you.
@staticmethod
def get_train_window_finder_config_template() -> (
tuple[list[DataLabelConfigTemplate], TrainWindowSizePriority] | None
):
return None
def validate_input_data(
self,
input_data: InputData,
) -> WindowViability:
return {PredictionType.ML: (True, None)}
At the moment we do not store intermediate steps (like storing preprocessed data or related logs), but in the future we might.
def preprocess(self, input_data: InputData) -> InputData:
return input_data
Model attributes
class POCAnomaly(ModelInterfaceV4):
model_type_name: str = "pocanomaly"
# Model category is based on the output of the model.
model_category: ModelCategory = ModelCategory.ANOMALY
# List of features used to train the model. If not supplied, equal to data_config().
train_data_config: dict[DataLevels, list] | None = None
# This is only needed when get_target_tag_template returns UnitTagTemplate
target: UnitTag | None = None
model_type_name
is simply the name of our model and can be any descriptive string. model_category
has to be one of the possible levels of the ModelCategory
Enum. The last two entries are optional and we assign default values as None
. In our example we do not need them.
Testing compliance with the data contract
Since all the attributes and methods from the Protocol ModelInterfaceV4
are implemented, including the correct type-hints / annotations, our POCAnomaly
class passes the isinstance
check with ModelInterfaceV4
(see tests/test_interface.py
).
Visualizing the train and predict process in our infrastructure
In our infrastructure, the executor
class takes care of running the model either for training or predictions on the darrow-ml-platform
infrastructure. If a model is compliant with the model interface, you can visualize how it would run in our infrastructure using the MockExecutor in twinn-ml-interface. For demonstration purposes, you will find in this repository the TestModelWithLocalExecutor
that you can run on debug mode, which hopefully makes it a little clearer in what context the model class (in this case POCAnomaly
) will be used. You can find more information about the mock executors and the steps that they follow in twinn-ml-interface
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file darrow-poc-0.1.8.tar.gz
.
File metadata
- Download URL: darrow-poc-0.1.8.tar.gz
- Upload date:
- Size: 25.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4904e7ce32a3c0e0c6d3f97ad2e03eef35fe1088f707c0a9306e8fc0845b992 |
|
MD5 | 8c631dc8752cf9e8006cc6d49ce0c9b7 |
|
BLAKE2b-256 | 75b19e702c30259b00f606eb06545770c58804d8dc2889be33c9135acb60c419 |
File details
Details for the file darrow_poc-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: darrow_poc-0.1.8-py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01402012d927d5cbba6785722af3f8eda866e590788ace14116fb616d6b1ea69 |
|
MD5 | d094825725af71bf8478ca70142eef14 |
|
BLAKE2b-256 | 9f8546f73d0d3ba9c586bc9b95cac5f2ad1f0524499befdfab38a13f89d7f763 |