Skip to main content

A comprehensive toolkit for Sanskrit text processing

Project description

Vedika - Sanskrit NLP Toolkit

Vedika is a comprehensive toolkit for Sanskrit text processing, offering deep learning-based tools for sandhi splitting and joining, text normalization, sentence splitting, syllabification, and tokenization.

Features

  • Sandhi Processing
    • Split compound Sanskrit words using attention-based neural networks
    • Join Sanskrit words with proper sandhi rules
    • Support for beam search to get multiple suggestions
  • Text Processing
    • Syllabification
    • Tokenization
    • Sentence splitting
    • Text normalization

Installation

# Install from PyPI (soon)
pip install vedika

# Install from source
git clone https://github.com/tanuj437/vedika.git
cd vedika
pip install -e .

Requirements

  • Python >= 3.8
  • PyTorch >= 1.9.0
  • NumPy >= 1.19.0
  • Pandas >= 1.3.0
  • tqdm >= 4.62.0
  • regex >= 2021.8.3

Quick Start

Sandhi Splitting

from vedika import SanskritSplit

# Initialize splitter
splitter = SanskritSplit()

# Split a single word
result = splitter.split("रामायणम्")
print(result['split'])  # Output: राम + अयन + अम्

# Batch processing
words = ["रामायणम्", "गीतागोविन्दम्"]
results = splitter.split_batch(words)
for result in results:
    print(f"{result['input']}{result['split']}")

Sandhi Joining

from vedika import SandhiJoiner

# Initialize joiner
joiner = SandhiJoiner()

# Join split words
result = joiner.join("राम+अस्ति")
print(result)  # Output: रामास्ति

# Batch processing
texts = ["राम+अस्ति", "गच्छ+अमि"]
results = joiner.join_batch(texts)
print(results)  # ['रामास्ति', 'गच्छामि']

Advanced Usage

Beam Search for Multiple Suggestions

# Get multiple suggestions with beam search
result = splitter.split("रामायणम्", beam_size=3)
print(f"Best split: {result['split']}")
print(f"Confidence: {result['confidence']}")
print("Alternatives:")
for alt in result['alternatives']:
    print(f"- {alt['split']} (confidence: {alt['confidence']})")

Model Information

# Get model details
info = splitter.get_model_info()
print(f"Vocabulary size: {info['vocabulary_size']}")
print(f"Device: {info['device']}")
print(f"Configuration: {info['model_config']}")

Project Structure

vedika/
├── __init__.py
├── normalizer.py
├── sandhi_join.py
├── sandhi_split.py
├── sentence_splitter.py
├── syllabification.py
├── tokenizer.py
└── data/
    ├── cleaned_metres.json
    ├── sandhi_joiner.pth
    └── sandhi_split.pth

Model Architecture

The sandhi processing models use:

  • Bidirectional LSTM encoder
  • GRU decoder with attention
  • Multi-head attention mechanism
  • Character-level processing

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Authors

  • Tanuj Saxena
  • Soumya Sharma

Citation

If you use Vedika in your research, please cite:

@software{vedika2025,
  title={Vedika: A Sanskrit Text Processing Toolkit},
  author={Saxena, Tanuj and Sharma, Soumya},
  year={2025},
  url={https://github.com/username/vedika}
}

Contact

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vedika-0.0.11.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vedika-0.0.11-py2.py3-none-any.whl (36.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file vedika-0.0.11.tar.gz.

File metadata

  • Download URL: vedika-0.0.11.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for vedika-0.0.11.tar.gz
Algorithm Hash digest
SHA256 1e3d1764cf4f870626094519201a3eb407200faea119e194fb5771cc1fda57c3
MD5 b7618b110b4c08c2d8f6ab55eb88db81
BLAKE2b-256 b9a66f8a7741706fa4bb4254448e53c31ec60ec996bfeddf7cebc03967c48226

See more details on using hashes here.

File details

Details for the file vedika-0.0.11-py2.py3-none-any.whl.

File metadata

  • Download URL: vedika-0.0.11-py2.py3-none-any.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for vedika-0.0.11-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 363becab8083513b9b1321eb33599cb825082dc4200e779b763ed4371527bb26
MD5 2acef39b10e7a1f5144669ee9c58392c
BLAKE2b-256 97f6ee92d51723294c1556892d0250fffc587cc4058f3c1f057b664087bb9160

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page