weka stringToWordVector filter stringOptions

前端 未结 1 1642
自闭症患者
自闭症患者 2021-02-11 10:11

I\'m trying to filter a dataset using weka\'s java API. I\'ve successfully filtered the attributes I want with a stringToWordVector filter in Weka\'s GUI but I can\'t seem to d

1条回答
  •  清酒与你
    2021-02-11 10:52

    You can actually omit most of the options, as they are the defaults for StringToWordVector. The delimiters you're trying to pass are the default delimiters in the default tokenizer, WordTokenizer, which are:

    ' \r\n\t.,;:'"()?!'
    

    0 讨论(0)
提交回复
热议问题