Coverage for src/bob/fusion/base/config/algorithm/mean.py: 0%
4 statements
« prev ^ index » next coverage.py v7.6.0, created at 2024-07-13 01:00 +0200
« prev ^ index » next coverage.py v7.6.0, created at 2024-07-13 01:00 +0200
1#!/usr/bin/env python
3from sklearn.preprocessing import StandardScaler
5import bob.fusion.base
7algorithm = bob.fusion.base.algorithm.Weighted_Sum(
8 preprocessors=[StandardScaler()]
9)
11algorithm_tanh = bob.fusion.base.algorithm.Weighted_Sum(
12 preprocessors=[bob.fusion.base.preprocessor.Tanh()]
13)