Source code for languagechange.models.meaning.meaning

from abc import ABC


[docs] class MeaningModel(ABC): def __init__(self): pass
[docs] class WordSenseInduction(MeaningModel): pass
[docs] class StaticEmbedding(ABC): """Placeholder base for static embedding types.""" pass
# todo
[docs] class SGNS(StaticEmbedding): def __init__(self): self.align_strategies = {"OP", "SRV", "WI"} pass