core.model

Models

This module contains the different models.

Model Types

There are two types of models

Usage

Also see the examples there

View Source
"""
# Models

This module contains the different models.

## Model Types
There are two types of models
- Transformer based models in `core.model.transformer`  
- SCD Matrix based models in `core.model.scdmatrix`

## Usage
- All models share the api of `core.model.base.Model` 
- To run typical steps, take a look at `core.model.base.Executor`

> Also see the examples there
"""

from core.model.base import Model
from core.model.exec import Executor