Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.33 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.33 KB

doc_manager

Small prototype to AutoTag the files in any folder and sub folders. To run the server type in CLI:

uvicorn main:app --reload

This will open a server at http://127.0.0.1:8000 and you can search in a specific folder at the input box on the type.

Model

The model is a distilbert-base-uncased BERT model, whose outputs are summed up and passed through a linear layer (kernel).

Packages

Install packages using command:

pip3 install -r requirements.txt --user

The earlier error with Windows was that the CLI was not able to find the correct executable for pdf2text.py called by textract. We shifted to a different package (PyPDF2) for handling PDF parsing in Windows system.

Training Code

Read train.py for better understanding of the training setup.

Files

This is the description of the files:

  • assets/: folder with things to run the webpage
  • sample/: folder with sample PDFs for this prototype
  • classes.json: file with labels
  • doc_manager.py: code to process files
  • main.py: server code
  • params.npy: Classification Head paramters as a numpy array (np array is lighter than torch modules)
  • requirements.py
  • train.py: Sample code for training your own classifier head and save the params.npy file