mapTransformer{
        "map[string]float32",
        func(source *interface{}) map[string]interface{} {
            result := make(map[string]interface{}, len((*source).(map[string]float32)))
            for key, value := range (*source).(map[string]float32) {