Performs Classification using Regex for social media user's profile categorization and NER tasks
Project description
NLP Classification Python Package For Profile Category and NER
Functionality of the Package
Performs Classification using Regex for social media user's profile categorization and NER tasks
- If profile:
- Categories: Politician, Information Vehicule, Health Professional, Science, Education Professional, Artist, Organization and Journalist;
- NER:
- Vaccines, Products, Drugs, Diseases, Symptoms, Science, Part of the body; returns a dataframe that has information of the entity id, name and it's occurence frequency on the input text.
The package takes the following parameters as input:
- Profile:
- Text containing informations about the user's biography or channel description in the context of communication reaseach porpuses
- NER:
- Text
Usage
´pip install nlpclassifier´
Example
´´´ from nlpclassifier_profilener import NLPClassifier
#instatiate the classifier tpc = TwitterProfileClassifier('profile') #preprocess the text. Its's important to lowercase and remove accents yt['channelDesc'] = yt['channelDesc'].apply(lambda x: pipeline.preprocess(x, lower = True)).apply(lambda x: pipeline.strip_accents(x)) #classify channelCategory yt['channelCategory'] = yt['channelDesc'].apply(lambda x: tpc.classifier(str(x)))
yt['channelCategory'].value_counts()
´´´
Note
The package is currently in a very elementary stage and work is in progress. In case of error, feel free to contact me.
Change Log
0.0.1 (03/09/2022)
- First Release
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 ProfileNER-classifier-0.0.1.tar.gz
.
File metadata
- Download URL: ProfileNER-classifier-0.0.1.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 188647026a7f031c0f5a84f5c31039a0686560bdd6895db32f486b0807ca57d4 |
|
MD5 | 9715d4c66b28acf652673f8fac0d0b9e |
|
BLAKE2b-256 | a06e665c9df6258bac532618d885294c8d4761eb613d6ae6e424f8a75b6f7c15 |
File details
Details for the file ProfileNER_classifier-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: ProfileNER_classifier-0.0.1-py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e959954a6e971f59ae97ac7631c7feeb5278d0ee8d230a8979b1a9b0601edfe8 |
|
MD5 | 7cdd747d5437f09c2ec6e3348c992dec |
|
BLAKE2b-256 | d4a72d63fe05cec857573fdd60c5e611798a3b68fa42fded4b6a99e932f8cb3c |