simulation/decai/simulation/simulate_titanic_dt.py [75:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        DefaultCollaborativeTrainerModule,
        LoggingModule,
        StakeableImModule,
        TitanicDataModule
    ])
    d = inj.get(DataLoader)
    (x_train, y_train), (x_test, y_test) = d.load_data()
    c = inj.get(Classifier)
    c.init_model(x_train, y_train)
    score = c.evaluate(x_train, y_train)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



simulation/decai/simulation/simulate_titanic_nb.py [77:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        DefaultCollaborativeTrainerModule,
        LoggingModule,
        StakeableImModule,
        TitanicDataModule
    ])
    d = inj.get(DataLoader)
    (x_train, y_train), (x_test, y_test) = d.load_data()
    c = inj.get(Classifier)
    c.init_model(x_train, y_train)
    score = c.evaluate(x_train, y_train)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



