Classifies text as 'Fiction' or 'Non-Fiction'.
Project description
Fictometer
Description
Fictometer is an algorithm for analysing whether the given text is Fiction
or Non-Fiction
.
It first calculates the number of adverbs
, adjectives
and pronouns
in the text.
It then calculates Ratio of Adjective to Pronoun RADJPRON
and Ratio of Adverb to Adjective RADVADJ
,
from which it predicts whether text is Fiction
or Non-Fiction
.
Blog Link: 🔗LINK
Installation
pip install Fictometer
Usage
import Fictometer
text = "your_text"
pc = Fictometer.counts(text)
// returs the count of ```adjectives```, ```adverbs``` and ```pronouns```
result = Fictometer.predict(text)
// Uses counts(), then calculates RADJPRON and RADVADJ, and returns a tuple having 'result' and 'confidence'.
Fictometer.help()
// Shows how to use the package
Contact
email - atmabodha@gmail.com
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
fictometer-0.2.5.tar.gz
(4.4 kB
view hashes)
Built Distribution
Close
Hashes for Fictometer-0.2.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08175a09b3f17449b603fddd0f36af071f3d711d2f5e0b4cbf8121ded6276210 |
|
MD5 | 6b2f7eb015debbc4ec15ab07c2473fe8 |
|
BLAKE2b-256 | e6b88bcd6157fcdd90c408d797c59b52f28e33d5fc3ad2ee2b1ce686db9309a9 |