This is a simple document analyzer app that can be used to train a model to classify documents into different categories. It is separated into three parts:
- The Upload (Test data) section, where you can upload documents and get the classification results.
- The Upload (Train data) section, where you can upload documents and save them to the database.
- The Training section, where you can select documents from the database and train a model to classify them.
- Run the following commands in the root directory of the project:
docker build -t document-analyzer .
docker run -p 5001:5000 document-analyzer
- With Docker-compose:
docker-compose up
- Navigate to
http://localhost:5001
in your browser.