top of page
Search

PAI Main Algorithm-II

  • Writer: DR.GEEK
    DR.GEEK
  • Mar 31, 2020
  • 1 min read

(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

 
 
 

Comentarii


© 2023 by Walkaway. Proudly created with Wix.com

  • Facebook Black Round
  • Twitter Black Round
bottom of page