sanskrit_parser
sanskrit_parser copied to clipboard
Parsers for Sanskrit / संस्कृतम्
I'm not aware if the 'stem' table from sanskrit_data.db is being used or not, but if it is, then some entries in it seem erroneous. For example, `SELECT * FROM...
Bumps [werkzeug](https://github.com/pallets/werkzeug) from 2.1.2 to 2.2.3. Release notes Sourced from werkzeug's releases. 2.2.3 This is a fix release for the 2.2.x release branch. Changes: https://werkzeug.palletsprojects.com/en/2.2.x/changes/#version-2-2-3 Milestone: https://github.com/pallets/werkzeug/milestone/26?closed=1 This release contains...
Minimal example: ``` from sanskrit_parser import Parser def api_example(string, output_encoding): buf = [] parser = Parser(output_encoding=output_encoding) buf.append('Splits:') for split in parser.split(string, limit=2): buf.append(f'Lexical Split: {split}') for i, parse in enumerate(split.parse(limit=2)):...
Moving this comment from @akprasad to create a new issue: ``` Also, I get around 1.8 seconds per verse: import time num_trials = 20 start = time.time() for i, phrase...
Initial debug - looks like rakzitaH (and other kta forms) are not being treated fully correctly in the vAkya parser. I need to dig into my notes about why this...
https://github.com/kmadathil/sanskrit_parser/blob/master/sanskrit_parser/output_utils/__init__.py इत्यस्य चालनेन > श्रुतिभगवतीचरणप्रतीका छन्दोविचितिरिति वेदाङ्गविदः समामनन्ति । अस्य चरणयुगलस्य गतिरेव च्छन्दःसुषमेति तन्मर्मविदां प्रेक्षा । इति पाठाद् > श्रुति-भगवती-चरण-प्रतीका छन्दोविचितिः-इति वेदाङ्ग-विदः समाम-नन्ति । अस्य चरण-युगलस्य गति-रेव च्छन्दःसुषमेति तद्-मर्मविदाम् प्रेक्षा...
मित्राविनाश @avinashvarna , द्वित्रास् संस्था अत्यन्तम् आसक्ताः वैदिकसन्धियत्रप्रयोगे। तत्प्रयोगेण वेदविकृतिपाठान् जिजनयिषन्ति। तेषु @vedavmsnmv , वंशीकृष्णघनपाठी, अन्येऽपि चान्तर्भवन्ति। तैस् सह भाषमाणेन मया एतद् यन्त्रं वर्धयितुम् उचितं स्यादिति प्रोक्तम्। अचिराद् अपेक्षितान् प्रातिशाख्यविशिष्टसन्धिनियमान्...
Need to develop metrics for evaluating performance of the analyzers. This would be useful if we were trying to choose between databases for looking up tags/ different approaches for lexical/morphological...
In 2021, let's consider a) Creating a good document explaining the software design b) Publishing on arxiv.org and in a relevant conference/publication if feasible. There are gaps (like a good...
FYI - I have begun coding a Paninian generator. The goal is to implement the ashtadhyayi plus vartikas as needed. As of now, a basic skeleton that handles some pada-sandhi...