Skip to content

getml.data.DataModel

DataModel(population: Union[Placeholder, str])

Abstract representation of the relationship between tables.

You might also want to refer to Placeholder.

ATTRIBUTE DESCRIPTION
population

The placeholder representing the population table, which defines the statistical population and contains the targets.

Example

This example will construct a data model in which the 'population_table' depends on the 'peripheral_table' via the 'join_key' column. In addition, only those rows in 'peripheral_table' for which 'time_stamp' is smaller or equal to the 'time_stamp' in 'population_table' are considered:

dm = getml.data.DataModel(
    population_table.to_placeholder("POPULATION")
)

dm.add(peripheral_table.to_placeholder("PERIPHERAL"))

dm.POPULATION.join(
    dm.PERIPHERAL,
    on="join_key",
    time_stamps="time_stamp"
)
If you want to add more than one peripheral table, you can use to_placeholder:
dm = getml.data.DataModel(
    population_table.to_placeholder("POPULATION")
)

dm.add(
    getml.data.to_placeholder(
        PERIPHERAL1=peripheral_table_1,
        PERIPHERAL2=peripheral_table_2,
    )
)
If the relationship between two tables is many-to-one or one-to-one you should clearly say so:
dm.POPULATION.join(
    dm.PERIPHERAL,
    on="join_key",
    time_stamps="time_stamp",
    relationship=getml.data.relationship.many_to_one,
)
Please also refer to relationship.

If the join keys or time stamps are named differently in the two different tables, use a tuple:

dm.POPULATION.join(
    dm.PERIPHERAL,
    on=("join_key", "other_join_key"),
    time_stamps=("time_stamp", "other_time_stamp"),
)
You can join over more than one join key:
dm.POPULATION.join(
    dm.PERIPHERAL,
    on=["join_key1", "join_key2", ("join_key3", "other_join_key3")],
    time_stamps="time_stamp",
)
You can also limit the scope of your joins using memory. This can significantly speed up training time. For instance, if you only want to consider data from the last seven days, you could do something like this:
dm.POPULATION.join(
    dm.PERIPHERAL,
    on="join_key",
    time_stamps="time_stamp",
    memory=getml.data.time.days(7),
)
In some use cases, particularly those involving time series, it might be a good idea to use targets from the past. You can activate this using lagged_targets. But if you do that, you must also define a prediction horizon. For instance, if you want to predict data for the next hour, using data from the last seven days, you could do this:
dm.POPULATION.join(
    dm.PERIPHERAL,
    on="join_key",
    time_stamps="time_stamp",
    lagged_targets=True,
    horizon=getml.data.time.hours(1),
    memory=getml.data.time.days(7),
)
Please also refer to time.

If the join involves many matches, it might be a good idea to set the relationship to propositionalization. This forces the pipeline to always use a propositionalization algorithm for this join, which can significantly speed things up.

dm.POPULATION.join(
    dm.PERIPHERAL,
    on="join_key",
    time_stamps="time_stamp",
    relationship=getml.data.relationship.propositionalization,
    )

Please also refer to relationship.

In some cases, it is necessary to have more than one placeholder on the same table. This is necessary to create more complicated data models. In this case, you can do something like this:

dm.add(
    getml.data.to_placeholder(
        PERIPHERAL=[peripheral_table]*2,
    )
)

# We can now access our two placeholders like this:
placeholder1 = dm.PERIPHERAL[0]
placeholder2 = dm.PERIPHERAL[1]
If you want to check out a real-world example where this is necessary, refer to the CORA notebook.

Source code in getml/data/data_model.py
164
165
166
167
168
169
170
171
172
173
174
175
176
177
def __init__(self, population: Union[Placeholder, str]):
    if isinstance(population, str):
        population = Placeholder(population)

    if not isinstance(population, Placeholder):
        raise TypeError(
            "'population' must be a getml.data.Placeholder or a str, got "
            + type(population).__name__
            + "."
        )

    self.population = population

    self.peripheral = {}

names property

names: List[str]

A list of the names of all tables contained in the DataModel.

RETURNS DESCRIPTION
List[str]

A list of names.

add

add(*placeholders: Placeholder)

Adds peripheral placeholders to the data model.

PARAMETER DESCRIPTION
placeholders

The placeholder or placeholders you would like to add.

TYPE: Placeholder DEFAULT: ()

Source code in getml/data/data_model.py
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
def add(self, *placeholders: Placeholder):
    """
    Adds peripheral placeholders to the data model.

    Args:
        placeholders:
            The placeholder or placeholders you would like to add.
    """

    def to_list(elem):
        return elem if isinstance(elem, list) else [elem]

    # We want to be 100% sure that all handles are unique,
    # so we need deepcopy.
    placeholders_dc = [
        deepcopy(ph) for elem in placeholders for ph in to_list(elem)
    ]

    if not _is_typed_list(placeholders_dc, Placeholder):
        raise TypeError(
            "'placeholders' must consist of getml.data.Placeholders "
            + "or lists thereof."
        )

    for placeholder in placeholders_dc:
        self._add(placeholder)