# README
package examplemodule
//go:generate go run github.com/nikolaydubina/go-featureprocessing/cmd/generate -struct=Employee
// Employee is example from readme
type Employee struct {
Age int feature:"identity"
Salary float64 feature:"minmax"
Kids int feature:"maxabs"
Weight float64 feature:"standard"
Height float64 feature:"quantile"
City string feature:"onehot"
Car string feature:"ordinal"
Income float64 feature:"kbins"
Description string feature:"tfidf"
SecretValue float64
}