Skip to main content

Portable, production-grade models in Python

Project description

TRAC Model Runtime for Python

The TRAC Model Runtime is a lightweight package for building portable, production-grade Python models. Models created with the runtime can be executed anywhere, from local development environments to enterprise production systems. The runtime can be used independently of the broader TRAC platform and provides a simple framework in which to build, ship, and share models.

Each model defines its parameters, inputs and outputs, and the runtime provides the execution context, ensuring that models always receive valid data and parameters. Taking responsibility for data access, marshalling and formatting out of the model code allows developers to focus on model logic, safe in the knowledge that the model will behave consistently across environments.

For a complete guide to writing models in the TRAC framework, see the online documentation.

📦 Requirements

  • Python : 3.10 or later
  • Tools : Any popular IDE (PyCharm, VS Code, etc.)
  • Pandas : Version 1.3 and later are supported
  • Polars : Version 1.0 and later are supported

Some 3rd party libraries may have additional version constraints, for example, Pandas 1.5 is not available for Python 3.12 or later.

🚀 Quick start

TRAC can be added to a new or existing Python project using pip:

$ pip install tracdap-runtime

You will also need to install a data framework (Pandas or Polars) and any other libraries that the model uses.

Here is a minimum working example of a TRAC model that performs aggregation on a dataset:

import tracdap.rt.api as trac

class QuickStartModel(trac.TracModel):

    def define_parameters(self):

        # Define any parameters the model will use
        return trac.define_parameters(
            trac.P("exchange_rate", trac.FLOAT, "EUR / GBP exchange rate")
        )

    def define_inputs(self):

        # Define an input table with the columns and data types that the model needs
        customer_loans = trac.define_input_table(
            trac.F("id", trac.STRING, label="Customer account ID", business_key=True),
            trac.F("region", trac.STRING, label="Customer home region", categorical=True),
            trac.F("loan_amount", trac.FLOAT, label="Principal loan amount (EUR)"),
            label="Customer loans data")

        return {"customer_loans": customer_loans}

    def define_outputs(self):

        # Define an output table with the columns and data types that the model will produce
        loans_by_region = trac.define_output_table(
            trac.F("region", trac.STRING, label="Customer home region", categorical=True),
            trac.F("total_lending", trac.FLOAT, label="Total lending (GBP)"),
            label="Loans by region")

        return {"loans_by_region": loans_by_region}

    def run_model(self, ctx: trac.TracContext):

        # Parameters and inputs are loaded and validated by TRAC
        exchange_rate = ctx.get_parameter("exchange_rate")
        customer_loans = ctx.get_pandas_table("customer_loans")

        # Model code is regular Python
        customer_loans["loan_amount_gbp"] = customer_loans["loan_amount"] * exchange_rate

        loans_by_region = customer_loans \
            .groupby("region", observed=True, as_index=False) \
            .aggregate(total_lending=("loan_amount_gbp", "sum"))

        # Logs written to ctx.log are captured by the platform
        ctx.log().info("Aggregated loans for %d regions", len(loans_by_region))

        # Outputs are handed back to TRAC for validation and saving
        ctx.put_pandas_table("loans_by_region", loans_by_region)

# Use the desktop launcher to run, test and debug models locally
if __name__ == "__main__":
    import tracdap.rt.launch as launch
    launch.launch_model(QuickStartModel, "config/quick_start.yaml", "config/sys_config.yaml")

The model needs two config files in order to run: A job config file and a system config file. By convention, for local development these are kept in a config folder.

The system config file defines the resources that are available for models to use. As a minimum the default storage location must be specified.

sys_config.yaml

properties:

  storage.default.location: example_data
  storage.default.format: CSV

resources:

  example_data:
    resourceType: INTERNAL_STORAGE
    protocol: LOCAL
    properties:
      rootPath: C:\path\to\your\data

The job config file supplies the model with the parameters, inputs and outputs that it needs to run. The default data location from sys_config.yaml is used to load input data and save output data. TRAC checks the types and schemas of every parameter and input dataset, types are cast automatically where it is safe to do so, otherwise TRAC will raise an error if the inputs are not valid.

quick_start.yaml

job:
  runModel:
    
    parameters:
      exchange_rate: 0.865
    
    inputs:
      customer_loans: "inputs/customer_loans_data.csv"

    outputs:
      loans_by_region: "outputs/example_model/loans_by_region.csv"

You can run the model from your IDE (right click the model file and choose "Run", or look for the "Play" button). You will see the model logs, and an output file will be created inside your data folder.

📖 Documentation

See the online documentation for a complete guide to writing models in the TRAC framework, including tutorials and an API reference.

✋ Contributing

If you'd like to contribute a feature or a fix then we'd love to hear from you! Please raise an issue on our issue tracker to discuss your suggestion before working on a PR.

Contributions are governed according to the contribution guidelines and the FINOS code of conduct.

📜 License

The TRAC model runtime is maintained by finTRAC Ltd in association with the Fintech Open Source Foundation (FINOS) and distributed under the terms of the Apache License, Version 2.0.

SPDX-License-Identifier: Apache-2.0

For more information including copyright history, see the NOTICE file.

🏢 Enterprise

Professional support for TRAC is available from finTRAC Ltd, for more information please contact us.

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

tracdap_runtime-0.10.0rc1.tar.gz (237.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tracdap_runtime-0.10.0rc1-py3-none-any.whl (317.5 kB view details)

Uploaded Python 3

File details

Details for the file tracdap_runtime-0.10.0rc1.tar.gz.

File metadata

  • Download URL: tracdap_runtime-0.10.0rc1.tar.gz
  • Upload date:
  • Size: 237.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tracdap_runtime-0.10.0rc1.tar.gz
Algorithm Hash digest
SHA256 7e2dd2fbabe3c9242d3574bd3eaee746b803c5ce1a17c33a41fba01ebe8a600e
MD5 d7862eca55bf549fce3cb8f0064f91e7
BLAKE2b-256 c8233faddd81c349c76a0ffdd9c691715c74f439d06f871b114ea723e094af68

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracdap_runtime-0.10.0rc1.tar.gz:

Publisher: packaging.yaml on finos/tracdap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tracdap_runtime-0.10.0rc1-py3-none-any.whl.

File metadata

File hashes

Hashes for tracdap_runtime-0.10.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 775e632af9b6863106d265d1267f2d223608aa92e5674eb2977b42c0f88feb43
MD5 060b96cb262be87d2a9a1e856b663d29
BLAKE2b-256 69e758fece6ba42fe8a96a74f7fb51906c1a530da7873e504b16d325800e9f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracdap_runtime-0.10.0rc1-py3-none-any.whl:

Publisher: packaging.yaml on finos/tracdap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page