Thanks to visit codestin.com
Credit goes to github.com

Skip to content

StarlangSoftware/TurkishMorphologicalDisambiguation-Py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Morphological Disambiguation

Task Definition

Morphological disambiguation is the problem of selecting accurate morphological parse of a word given its possible parses. These parses are generated by a morphological analyzer. In morphologically rich languages like Turkish, the number of possible parses for a given word is generally more than one. Each parse is considered as a different interpretation of a single word. Each interpretation consists of a root word and sequence of inflectional and derivational suffixes. The following table illustrates different interpretations of the word ‘‘üzerine’’.

üzer+Noun+A3sg+P3sg+Dat
üzer+Noun+A3sg+P2sg+Dat
üz+Verb+Pos+Aor+^DB+Adj+Zero+^DB+Noun+Zero+A3sg+P3sg+Dat
üz+Verb+Pos+Aor+^DB+Adj+Zero+^DB+Noun+Zero+A3sg+P2sg+Dat

As seen above, the first two parses share the same root but different suffix sequences. Similarly, the last two parses also share the same root, however sequence of morphemes are different. Given a parse such as

üz+Verb+Pos+Aor+^DB+Adj+Zero+^DB+Noun+Zero+A3sg+P3sg+Dat

each item is separated by ‘‘+’’ is a morphological feature such as Pos or Aor. Inflectional groups are identified as sequence of morphological features separated by derivational boundaries ^DB. The sequence of inflectional groups forms the term tag. Root word plus tag is named as word form. So, a word form is defined as follows:

IGroot+IG1+^DB+IG2+^DB+...+^DB+IGn

Then the morphological disambiguation problem can be defined as follows: For a given sentence represented by a sequence of words W = w1n = w1, w2, ..., wn, determine the sequence of parses T = t1n = t1, t2, ..., tn; where ti represents the correct parse of the word wi.

Data Annotation

Preparation

  1. Collect a set of sentences to annotate.
  2. Each sentence in the collection must be named as xxxx.yyyyy in increasing order. For example, the first sentence to be annotated will be 0001.train, the second 0002.train, etc.
  3. Put the sentences in the same folder such as Turkish-Phrase.
  4. Build the Java project and put the generated sentence-morphological-analyzer.jar file into another folder such as Program.
  5. Put Turkish-Phrase and Program folders into a parent folder.

Annotation

  1. Open sentence-morphological-analyzer.jar file.
  2. Wait until the data load message is displayed.
  3. Click Open button in the Project menu.
  4. Choose a file for annotation from the folder Turkish-Phrase.
  5. For each word in the sentence, click the word, and choose correct morphological analysis for that word.
  6. Click one of the next buttons to go to other files.

Classification DataSet Generation

After annotating sentences, you can use DataGenerator package to generate classification dataset for the Morphological Disambiguation task.

Generation of ML Models

After generating the classification dataset as above, one can use the Classification package to generate machine learning models for the Morphological Disambiguation task.

Simple Web Interface

Link 1 Link 2

Annotated Datasets

Framenet & Tourism

Atis & Gb & Pud & Imst & Boun

Kenet

Penn-Treebank

Video Lectures

For Developers

You can also see Cython, Java, C++, C, Js, Swift, Php, or C# repository.

Requirements

Python

To check if you have a compatible version of Python installed, use the following command:

python -V

You can find the latest version of Python here.

Git

Install the latest version of Git.

Pip Install

pip3.13 install NlpToolkit-MorphologicalDisambiguation

Download Code

In order to work on code, create a fork from GitHub page. Use Git for cloning the code to your local or below line for Ubuntu:

git clone <your-fork-git-link>

A directory called MorphologicalDisambiguation will be created. Or you can use below link for exploring the code:

git clone https://github.com/starlangsoftware/TurkishMorphologicalDisambiguation-Py.git

Open project with Pycharm IDE

Steps for opening the cloned project:

  • Start IDE
  • Select File | Open from main menu
  • Choose MorphologicalDisambiguation-Py file
  • Select open as project option
  • Couple of seconds, project will be downloaded.

Detailed Description

Creating MorphologicalDisambiguator

MorphologicalDisambiguator provides Turkish morphological disambiguation. There are possible disambiguation techniques. Depending on the technique used, disambiguator can be instantiated as follows:

  • Using RootFirstDisambiguation, the one that chooses only the root amongst the given analyses

      morphologicalDisambiguator = RootFirstDisambiguation()
    
  • Using RootWordStatisticsDisambiguation, the one that chooses the root that is the most frequently used amongst the given analyses

      morphologicalDisambiguator = RootWordStatisticsDisambiguation()
    
  • Using LongestRootFirstDisambiguation, the one that chooses the longest root among the given roots

      morphologicalDisambiguator = LongestRootFirstDisambiguation()
    
  • Using HmmDisambiguation, the one that chooses using an Hmm-based algorithm

      morphologicalDisambiguator = HmmDisambiguation()
    
  • Using DummyDisambiguation, the one that chooses a random one amongst the given analyses

      morphologicalDisambiguator = DummyDisambiguation()
    

Training MorphologicalDisambiguator

To train the disambiguator, an instance of DisambiguationCorpus object is needed. This can be instantiated and the disambiguator can be trained and saved as follows:

corpus = DisambiguationCorpus("penn_treebank.txt")
morphologicalDisambiguator.train(corpus)
morphologicalDisambiguator.saveModel()

Sentence Disambiguation

To disambiguate a sentence, a FsmMorphologicalAnalyzer instance is required. This can be created as below, further information can be found here.

fsm = FsmMorphologicalAnalyzer()

A sentence can be disambiguated as follows:

sentence = Sentence("Yarın doktora gidecekler")
fsmParseList = fsm.robustMorphologicalAnalysis(sentence)
print("All parses\n")
print("--------------------------\n")
for i in range(len(fsmParseList)):
    print(fsmParseList[i])
candidateParses = morphologicalDisambiguator.disambiguate(fsmParseList)
print("Parses after disambiguation\n")
print("--------------------------"\n)
for i in range(candidateParses.size()):
    print(candidateParses.get(i) + "\n")

Output

All parses
--------------------------
yar+NOUN+A3SG+P2SG+NOM
yar+NOUN+A3SG+PNON+GEN
yar+VERB+POS+IMP+A2PL
yarı+NOUN+A3SG+P2SG+NOM
yarın+NOUN+A3SG+PNON+NOM

doktor+NOUN+A3SG+PNON+DAT
doktora+NOUN+A3SG+PNON+NOM

git+VERB+POS+FUT+A3PL
git+VERB+POS^DB+NOUN+FUTPART+A3PL+PNON+NOM

Parses after disambiguation
--------------------------
yarın+NOUN+A3SG+PNON+NOM
doktor+NOUN+A3SG+PNON+DAT
git+VERB+POS+FUT+A3PL

Cite

@InProceedings{gorgunyildiz12,
author="G{\"o}rg{\"u}n, Onur
and Yildiz, Olcay Taner",
editor="Gelenbe, Erol
and Lent, Ricardo
and Sakellari, Georgia",
title="A Novel Approach to Morphological Disambiguation for Turkish",
booktitle="Computer and Information Sciences II",
year="2012",
publisher="Springer London",
address="London",
pages="77--83",
isbn="978-1-4471-2155-8"
}

For Contibutors

Setup.py file

  1. Do not forget to set package list. All subfolders should be added to the package list.
    packages=['Classification', 'Classification.Model', 'Classification.Model.DecisionTree',
              'Classification.Model.Ensemble', 'Classification.Model.NeuralNetwork',
              'Classification.Model.NonParametric', 'Classification.Model.Parametric',
              'Classification.Filter', 'Classification.DataSet', 'Classification.Instance', 'Classification.Attribute',
              'Classification.Parameter', 'Classification.Experiment',
              'Classification.Performance', 'Classification.InstanceList', 'Classification.DistanceMetric',
              'Classification.StatisticalTest', 'Classification.FeatureSelection'],
  1. Package name should be lowercase and only may include _ character.
    name='nlptoolkit_math',

Python files

  1. Do not forget to comment each function.
    def __broadcast_shape(self, shape1: Tuple[int, ...], shape2: Tuple[int, ...]) -> Tuple[int, ...]:
        """
        Determines the broadcasted shape of two tensors.

        :param shape1: Tuple representing the first tensor shape.
        :param shape2: Tuple representing the second tensor shape.
        :return: Tuple representing the broadcasted shape.
        """
  1. Function names should follow caml case.
    def addItem(self, item: str):
  1. Local variables should follow snake case.
	det = 1.0
	copy_of_matrix = copy.deepcopy(self)
  1. Class variables should be declared in each file.
class Eigenvector(Vector):
    eigenvalue: float
  1. Variable types should be defined for function parameters and class variables.
    def getIndex(self, item: str) -> int:
  1. For abstract methods, use ABC package and declare them with @abstractmethod.
    @abstractmethod
    def train(self, train_set: list[Tensor]):
        pass
  1. For private methods, use __ as prefix in their names.
    def __infer_shape(self, data: Union[List, List[List], List[List[List]]]) -> Tuple[int, ...]:
  1. For private class variables, use __ as prefix in their names.
class Matrix(object):
    __row: int
    __col: int
    __values: list[list[float]]
  1. Write __repr__ class methods as toString methods
  2. Write getter and setter class methods.
    def getOptimizer(self) -> Optimizer:
        return self.optimizer
    def setValue(self, value: Optional[Tensor]) -> None:
        self._value = value
  1. If there are multiple constructors for a class, define them as constructor1, constructor2, ..., then from the original constructor call these methods.
    def constructor1(self):
        self.__values = []
        self.__size = 0

    def constructor2(self, values: list):
        self.__values = values.copy()
        self.__size = len(values)

    def __init__(self,
                 valuesOrSize=None,
                 initial=None):
        if valuesOrSize is None:
            self.constructor1()
        elif isinstance(valuesOrSize, list):
            self.constructor2(valuesOrSize)
  1. Extend test classes from unittest and use separate unit test methods.
class TensorTest(unittest.TestCase):

    def test_inferred_shape(self):
        a = Tensor([[1.0, 2.0], [3.0, 4.0]])
        self.assertEqual((2, 2), a.getShape())

    def test_shape(self):
        a = Tensor([1.0, 2.0, 3.0])
        self.assertEqual((3, ), a.getShape())
  1. Enumerated types should be used when necessary as enum classes.
class AttributeType(Enum):
    """
    Continuous Attribute
    """
    CONTINUOUS = auto()
    """
    Discrete Attribute
    """
    DISCRETE = auto()

About

Turkish Morphological Disambiguation Library

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages