# 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 }

# Structs

AllTransformers has all transformer.
AllTransformersFeatureTransformer is a feature processor for AllTransformers.
Employee is example from readme.
EmployeeFeatureTransformer is a feature processor for Employee.
LargeMemoryTransformer has large memory footprint since each transformer is large.
LargeMemoryTransformerFeatureTransformer is a feature processor for LargeMemoryTransformer.
SomeOther is ignored since there is no gencode command in source file.
SomeOtherWithTags is ignored since there is no gencode command in source file, even though it has correct feature tags.
WeirdTags has unusual but valid tags.
WeirdTagsFeatureTransformer is a feature processor for WeirdTags.
With32Fields has many fields.
With32FieldsFeatureTransformer is a feature processor for With32Fields.