top of page
Search
Writer's pictureDR.GEEK

PAI Main Algorithm-II

(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

1 view0 comments

Recent Posts

See All

Comments


bottom of page