// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) by respective owners including Yahoo!, Microsoft, and // individual contributors. All rights reserved. Released under a BSD // license as described in the file LICENSE. // // -------------------------------------------------------------------------------------------------------------------- namespace VW.Serializer { /// /// Options for string pre-processing before feeding to VW native. /// public enum StringProcessing { /// /// Spaces are replaced with underscores. /// Escape, /// /// Strings are split on space, producing individual features. /// Split, /// /// Spaces are replaced with underscores and the property name is used as a prefix. /// EscapeAndIncludeName } }