【问题标题】:Is there any tool that gives separate root word and affixes form a given word input?是否有任何工具可以为给定的单词输入提供单独的词根和词缀?
【发布时间】:2019-07-23 03:32:01
【问题描述】:

我正在寻找一种工具,它可以为输入单词“unstoppable”提供如下输出。

前缀:un 后缀:能 根:停止

【问题讨论】:

    标签: nlp affix


    【解决方案1】:

    我认为您正在寻找的是一个morphological analyzer,它返回给定单词的“语素”。我不确定最先进的技术,但Morfessor FlatCat 应该可以工作。

    结果就像straightforwardness -> straight/STM + forward/STM + ness/SUF.

    【讨论】:

    • 谢谢,@Limteng 我会检查并返回。
    • 如果知道,建议使用任何其他工具。
    • @DaZzLeR 我不熟悉形态分析仪。谷歌“形态分析github”应该会返回很多形态分析工具。
    【解决方案2】:

    查看Lingua Robot。这是一个 REST API,它返回一堆有用的英语单词信息,包括词素。看起来它返回了你想要的unstoppable

     "morphemes": [
      {
        "entry": "un-",
        "type": "prefix"
      },
      {
        "entry": "stop",
        "type": "root"
      },
      {
        "entry": "-able",
        "type": "suffix"
      }
    ]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-11-11
      • 2021-07-27
      • 2019-02-13
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多