Skip to main content

How to use Machine Learning to classify your data?

classification_ml

Many enterprises face the same problem every day: how to handle the ever-growing piles of hard copy archives and gigabytes of exchanged documents in various raster formats, often representing unorganized and unstructured data. In order to use any of such data, one has to classify it first. For example, accounting documents can be divided into contracts, invoices, acceptance reports and many more. Network technical documentation can be divided into design maps, network acceptance protocols, surveying protocols, network failure protocols, station failure protocols, technical inspection cards,… etc. However, the classification process, if done manually, can be time-consuming, costly and frustrating for everyone involved. Can the solution to this problem come from Artificial Intelligence? We decided to test it and applied machine learning techniques to classify and sort out various document types as a part of the currently ongoing R&D project GlobIQ.

Experiments with classifying

Our experiment involved using a naive Bayesian classifier in a supervised learning mode in order to classify the project documentation.

Supervised text classification involves automatic assigning texts to a set of predefined classes, also called categories. A document may belong to a single class (single label classification) or multiple classes (multi-label classification), depending on the subjective evaluation of the set. A variant of the single label classification is the so-called binary classification, in which each document is assigned to a set or its complement.

Its steps were as follows:

1

First, we obtained a collection of tagged project documents consisting of JPG files (added to PDF) divided into 6 different categories. The JPG files were scans of paper documentation with both handwritten and printed text. The size of the set was several thousand one-page or several-page documents.
2

Then we randomly identified a subset of documents that was used as a training set. The size of the training set was 470 documents.
3

We used OCR (Google Vision API Beta) to convert JPG files from the learning set into plain text.
4

By means of simple functions we cleared the text of unnecessary signs, punctuation, changed to lowercase, etc.
5

In the next step we evaluated the different classifiers using data from the training set.

We used the following classifiers from the scikit-learn library:

  • Random Forest Classifier
  • Linear Support Vector Classification
  • Multinomial Naive Bayes Classifier
  • Logistic Regression

To evaluate the classifiers, we used the same training set (automatically divided into a training subset and a test subset) of 470 documents with a known category. As the basic measure of the classifiers’ performance we used the parameter “accuracy”. This parameter is the ratio of the number of correctly predicted values to the total number of values in the test set.

The results for particular classifiers were as follows:

The best result (0.975) was achieved by a classifier using LinearSVC and was used later in the experiment.

  • We used the best classifier found – LinearSVC – to simulate the production classification of a set of 6272 PDF documents with scans (about 24000 A4 pages). The workflow was as follows:
  • extracting JPG files from the PDF files
  • using OCR to retrieve plain text from the JPG file
  • using the classifier and predicting the document category
  • comparing the predicted category with the category determined by the operator (correct one)

The experiment results were as follows:

CategoryDocuments in the categoryIncorrect predictionsAccuracyNotes
12,05032984.0%Low quality scans
2342199.7%
32,3401399.4%
400-No documents in the production set
51,5391399.2%
Total6,272357-
94
the averange accuracy of predictions

Conclusions from the experiment

The achieved accuracy of document categorization was very high – for 3 categories it was above 99%. Only for one category, the accuracy was 84%. The classification of large volumes of documents (10,000 – 20,000) is completed within a few minutes. We estimate that manual viewing and classification of 10,000 documents would take about 10-20 days. The experiment proves that AI methods & tools, including algorithms used by GlobIQ, can be very useful in document classification.