No project description provided
Project description
tnkeeh (تنقيح) is an Arabic preprocessing library for python. It was designed using re
for creating quick replacement expressions for several examples.
Installation
pip install tnkeeh
Features
- Quick cleaning
- Segmentation
- Normalization
- Data splitting
Examples
Data Cleaning
import tnkeeh as tn
tn.clean_data(file_path = 'data.txt', save_path = 'cleaned_data.txt',)
Arguments
segment
uses farasa for segmentation.remove_diacritics
removes all diacritics.remove_special_chars
removes all sepcial chars.remove_english
removes english alphabets and digits.normalize
match digits that have the same writing but different encodings.remove_tatweel
tatweel characterـ
is used a lot in arabic writing.remove_repeated_chars
remove characters that appear three times in sequence.remove_html_elements
remove html elements in the form with their attirbutes.remove_links
remove links.remove_twitter_meta
remove twitter mentions, links and hashtags.remove_long_words
remove words longer than 15 chars.by_chunk
read files by chunks with sizechunk_size
.
HuggingFace datasets
import tnkeeh as tn
from datasets import load_dataset
dataset = load_dataset('metrec')
cleander = tn.Tnqeeh(remove_diacritics = True)
cleaned_dataset = cleander.clean_hf_dataset(dataset, 'text')
Data Splitting
Splits raw data into training and testing using the split_ratio
import tnkeeh as tn
tn.split_raw_data(data_path, split_ratio = 0.8)
Splits data and labels into training and testing using the split_ratio
import tnkeeh as tn
tn.split_classification_data(data_path, lbls_path, split_ratio = 0.8)
Splits input and target data with ration split_ratio
. Commonly used for translation
tn.split_parallel_data('ar_data.txt','en_data.txt')
Data Reading
Read split data, depending if it was raw or classification
import tnkeeh as tn
train_data, test_data = tn.read_data(mode = 0)
Arguments
mode = 0
read raw data.mode = 1
read labeled data.mode = 2
read parallel data.
Contribution
This is an open source project where we encourage contributions from the community.
License
MIT license.
Citation
@misc{tnkeeh2020,
author = {Zaid Alyafeai and Maged Saeed},
title = {tkseem: A Preprocessing Library for Arabic.},
year = {2020},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/ARBML/tnkeeh}}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tnkeeh-0.0.6.tar.gz
.
File metadata
- Download URL: tnkeeh-0.0.6.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 041abc84c56907d73a71b212d25b865392e6af31569705568692c0233fbd4a00 |
|
MD5 | 5067ec09189c7d9dde4ef64e78c5a96d |
|
BLAKE2b-256 | 0e20f4e285b19f5fe5fad28503fba65b7e2350ba4f7f24c664f6f660b1ff7118 |
File details
Details for the file tnkeeh-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: tnkeeh-0.0.6-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3885196ff3659ceece3f796170fe246cb5109f7dc7ccb52d6f7b3284be213078 |
|
MD5 | b152450d0c9867aa8e10f0133786202c |
|
BLAKE2b-256 | 778fa95197c93049cce5d47115968eb3e50943159d7b2238a3391becaf0e7ab8 |