Source code for germanetpy.semrel_measures
import fastenum
[docs]
class SemRelMeasure(fastenum.Enum):
"""This Enum represents the semantic relatedness measures"""
SimplePath = "SimplePath"
LeacockAndChodorow = "LeacockAndChodorow"
WuAndPalmer = "WuAndPalmer"
Resnik = "Resnik"
Lin = "Lin"
JiangAndConrath = "JiangAndConrath"