Coverage for src/bob/fusion/base/config/algorithm/mean.py: 0%
4 statements
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-14 22:15 +0100
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-14 22:15 +0100
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)