Python package – model-catwalk

One example can be found at https://pypi.python.org/pypi/model-catwalk/0.2.1 . Its first several lines of code are shown here:

import datetime
import pandas
from sqlalchemy import create_engine
from metta import metta_io as metta
from catwalk.storage import FSModelStorageEngine, CSVMatrixStore
from catwalk.model_trainers import ModelTrainer
from catwalk.predictors import Predictor
from catwalk.evaluation import ModelEvaluator
from catwalk.utils import save_experiment_and_get_hash
help(FSModelStorageEngine)

The related output is shown here. To save space, only the top part is presented:

 Help on class FSModelStorageEngine in module catwalk.storage:

class FSModelStorageEngine(ModelStorageEngine)
| Method resolution order:
| FSModelStorageEngine
| ModelStorageEngine
| builtins.object
|
| Methods defined here:
|
| __init__(self, *args, **kwargs)
| Initialize self. See help(type(self)) for accurate signature.
|
| get_store(self, model_hash)
|
| ----------------------------------------------------------------------
 | Data descriptors inherited from ModelStorageEngine:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)