All Projects → urduhack → Urduhack

urduhack / Urduhack

Licence: mit
An NLP library for the Urdu language. It comes with a lot of battery included features to help you process Urdu data in the easiest way possible.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Urduhack

Deeplearning4j
Suite of tools for deploying and training deep learning models using the JVM. Highlights include model import for keras, tensorflow, and onnx/pytorch, a modular and tiny c++ library for running math code and a java based math library on top of the core c++ library. Also includes samediff: a pytorch/tensorflow like library for running deep learni…
Stars: ✭ 12,277 (+6038.5%)
Mutual labels:  deeplearning
Clearml Server
ClearML - Auto-Magical Suite of tools to streamline your ML workflow. Experiment Manager, ML-Ops and Data-Management
Stars: ✭ 186 (-7%)
Mutual labels:  deeplearning
Thor
thor: C++ helper library, for deep learning purpose
Stars: ✭ 197 (-1.5%)
Mutual labels:  deeplearning
Fastnlp
fastNLP: A Modularized and Extensible NLP Framework. Currently still in incubation.
Stars: ✭ 2,441 (+1120.5%)
Mutual labels:  nlp-library
Deep white balance
Reference code for the paper: Deep White-Balance Editing, CVPR 2020 (Oral). Our method is a deep learning multi-task framework for white-balance editing.
Stars: ✭ 184 (-8%)
Mutual labels:  deeplearning
Bilinear Cnn Tensorflow
This is an implementation of Bilinear CNN for fine grained visual recognition using TensorFlow.
Stars: ✭ 187 (-6.5%)
Mutual labels:  deeplearning
Robomaster2018 Seu Opensource
This is the open source project for RoboMaster 2018 contest from Southeast University
Stars: ✭ 169 (-15.5%)
Mutual labels:  deeplearning
Keras Unet
Helper package with multiple U-Net implementations in Keras as well as useful utility tools helpful when working with image semantic segmentation tasks. This library and underlying tools come from multiple projects I performed working on semantic segmentation tasks
Stars: ✭ 196 (-2%)
Mutual labels:  deeplearning
Datastories Semeval2017 Task4
Deep-learning model presented in "DataStories at SemEval-2017 Task 4: Deep LSTM with Attention for Message-level and Topic-based Sentiment Analysis".
Stars: ✭ 184 (-8%)
Mutual labels:  deeplearning
Liteflownet2
A Lightweight Optical Flow CNN - Revisiting Data Fidelity and Regularization, TPAMI 2020
Stars: ✭ 195 (-2.5%)
Mutual labels:  deeplearning
Nlp profiler
A simple NLP library allows profiling datasets with one or more text columns. When given a dataset and a column name containing text data, NLP Profiler will return either high-level insights or low-level/granular statistical information about the text in that column.
Stars: ✭ 181 (-9.5%)
Mutual labels:  nlp-library
Pyarabic
pyarabic
Stars: ✭ 183 (-8.5%)
Mutual labels:  nlp-library
Deeplog
Pytorch Implementation of DeepLog.
Stars: ✭ 192 (-4%)
Mutual labels:  deeplearning
Awesome Deep Learning Music
List of articles related to deep learning applied to music
Stars: ✭ 2,195 (+997.5%)
Mutual labels:  deeplearning
Hyperspectral Classification
Hyperspectral-Classification Pytorch
Stars: ✭ 195 (-2.5%)
Mutual labels:  deeplearning
Speech Emotion Recognition
Speaker independent emotion recognition
Stars: ✭ 169 (-15.5%)
Mutual labels:  deeplearning
Coral Cnn
Rank Consistent Ordinal Regression for Neural Networks with Application to Age Estimation
Stars: ✭ 186 (-7%)
Mutual labels:  deeplearning
Sparse Structured Attention
Sparse and structured neural attention mechanisms
Stars: ✭ 198 (-1%)
Mutual labels:  deeplearning
Clearml
ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management
Stars: ✭ 2,868 (+1334%)
Mutual labels:  deeplearning
Faceswap pytorch
Deep fake ready to train on any 2 pair dataset with higher resolution
Stars: ✭ 194 (-3%)
Mutual labels:  deeplearning

Urduhack: A Python NLP library for Urdu language

image image Azure DevOps builds Azure DevOps tests Build Status CodeFactor codecov image Downloads Gitter License: MIT

Urduhack is a NLP library for urdu language. It comes with a lot of battery included features to help you process Urdu data in the easiest way possible.

You can reach out core contributor Mr Ikram Ali @ https://github.com/akkefa

Our Goal

  • Academic users Easier experimentation to prove their hypothesis without coding from scratch.
  • NLP beginners Learn how to build an NLP project with production level code quality.
  • NLP developers Build a production level application within minutes.

🔥 Features Support

  • [x] Normalization
  • [x] Preprocessing
  • [x] Tokenization
  • [x] Pipeline Module
  • [x] Models
    • [x] Pos tagger
    • [x] Lemmatizer
    • [x] Name entity recognition
    • [ ] Sentimental analysis
    • [ ] Image to text
    • [ ] Question answering system
  • [x] Datasets loader

🛠 Installation

Urduhack officially supports Python 3.6–3.7, and runs great on PyPy.

Installing with tensorflow cpu version.

$ pip install urduhack[tf]

Installing with tensorflow gpu version.

$ pip install urduhack[tf-gpu]

Usage

import urduhack

# Downloading models
urduhack.download()

nlp = urduhack.Pipeline()
text = ""
doc = nlp(text)

for sentence in doc.sentences:
    print(sentence.text)
    for word in sentence.words:
        print(f"{word.text}\t{word.pos}")

    for token in sentence.tokens:
        print(f"{token.text}\t{token.ner}")

🔗 Documentation

Fantastic documentation is available at https://urduhack.readthedocs.io/

Documentation
Installation How to install Urduhack and download models
Quickstart New to Urduhack? Here's everything you need to know!
API Reference The detailed reference for Urduhack's API.
Contribute How to contribute to the code base.

👍 Contributors

Special thanks to everyone who contributed to getting the Urduhack to the current state.

Backers Backers on Open Collective

Thank you to all our backers! 🙏 [Become a backer]

Sponsors Sponsors on Open Collective

Support this project by becoming a sponsor. [Become a sponsor]

📝 Copyright and license

Code released under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].
OSZAR »