(31th-March-2020)
Algorithm-II retrieves the semantic data for a sentence. The first step for this is to determine the nouns in the sentence. Later on for each noun we get semantic data from the domain specific knowledgebase. The functionality of Algorithm-II is utilized for semantic similarity.
ALGORITHM-II: Get Semantic Data List
1: procedure GetSemanticDataList(sentence)
2: nounList ← GetNounList(sentence)
3: for each noun in nounList
4: semanticData ← getDomainSpecificTriples(noun)
5: semanticDataList.add(semanticData)
6: end for
7: end procedure
Comments