Skip to main content

A simple CNN for n-class classification of document images.

Project description

basic-document-classifier

A simple CNN for n-class classification of document images.

It doesn't take colour into account (it transforms to grayscale). For small numbers of classes (2 to 4) this model can achieve > 90% accuracy with as little as 10 to 30 images per class.

Installation

pip install document-classifier or poetry add document-classifier

Usage

from document_classifier import CNN

# Create a classification model for 3 document classes.
classifier = CNN(class_number=3)

# Train the model based on images stored on the file system.
training_metrics = classifier.train(
    batch_size=8,
    epochs=40,
    train_data_path="./train_data",
    test_data_path="./test_data"
)
# "./train_data" and "./test_data" have to contain a subfolder for
# each document class, e.g. "./train_data/letter" or "./train_data/report".

# View training metrics like the validation accuracy on the test data.
print(training_metrics.history["val_acc"])

# Save the trained model to the file system.
classifier.save(model_path="./my_model")

# Load the model from the file system.
classifier = CNN.load(model_path="./my_model")

# Predict the class of some document image stored in the file system.
prediction = classifier.predict(image="./my_image.jpg")
# The image parameter also taks binary image data as a bytes object.

The prediction result is a 2-tuple containing the document class label as a string and the confidence score as a float.

TODO

The model architecture is fixed for now and geared towards smaller numbers of classes and training images. I'm working on automatic scaling for the CNN.

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

document-classifier-0.1.0.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

document_classifier-0.1.0-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file document-classifier-0.1.0.tar.gz.

File metadata

  • Download URL: document-classifier-0.1.0.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.12 CPython/3.6.5 Windows/10

File hashes

Hashes for document-classifier-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7293870651c9e02a1dc6dc2f4636c9125629765aa92d5d692e1275be44abf50b
MD5 fdf8ba6ca0dd8ea6bcfef57cf702bb60
BLAKE2b-256 35013fa3cee3c460f90c0f08b561118a0c3c8148763e859fea71230c31e4f81c

See more details on using hashes here.

File details

Details for the file document_classifier-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for document_classifier-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8408368ac41448853a84c450f0c8b297700ae8ddfa422edd3e5b58d040f66557
MD5 b561d30df46f6271bbc748612505c339
BLAKE2b-256 1816f192f02508bf6afd324d5c8ed7dbacb521d804611a6677219be843752d49

See more details on using hashes here.

Supported by

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