Skip to content

liv1n9/ais-wordnet-sim

Repository files navigation

ais-wordnet-sim


Install

pip install ais-wordnet-sim

Usage

Get list of similar sentences

Get a list which contains similar sentences (include original sentence)

from ais_wordnet_sim import similar_sentences
sentence = 'Thế lực thù đich có những âm mưu gì'
# default limit = 1000
result = similar_sentences(sentence, limit=5)
result

>>> ['thế lực thù đich có những âm mưu gì', 'thế lực thù đich có những thủ đoạn gì', 'thế lực thù đich có những mưu kế gì', 'thế lực thù đich có những mưu mẹo gì', 'thế lực thù đich có những mưu mô gì']

Create a category

Create a Category: { question_list, answer ,topic } from a question and an answer

from ais_wordnet_sim import generate_category
question = 'Thế lực thù đich có những âm mưu gì'
answer = 'Âm mưu phá hoại nhà nước'
# default limit = 1000
generate_category(question, answer, topic, limit=5)

Get all categories

Get all Categories generated in database

from ais_wordnet_sim import get_category_data
result = get_category_data()
result

>>> [{'_id': ObjectId('5d86f35b944d00e06eb3a76b'), 'question_list': ['thế lực thù đich có những âm mưu gì', 'thế lực thù đich có những thủ đoạn gì', 'thế lực thù đich có những mưu kế gì', 'thế lực thù đich có những mưu mẹo gì', 'thế lực thù đich có những mưu mô gì'], 'answer': 'Âm mưu phá hoại nhà nước'}]

Create Synonyms database from excel file

Note: Drop old database before creating new database

Example Exel format:

  • Sheet: n, a, v, r, e
  • Each row of sheet: one or multiple words, synonyms words follow original word
from ais_wordnet_sim import add_synonyms_excel
file = 'wordnet.xlsx'
add_synonyms_excel(file)

Enrich AIML File

Create an enriched AIML file from original AIML file

from ais_wordnet_sim import aiml_enrich
aiml_enrich('original.aiml', 'enriched.aiml')

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages