Ask Your Doc! is a portfolio project for my machine learning engineer career, that consists in just upload a document with a bunch of questions and return the answers by a DQA pre-trained model.
The project still in development and the next updates will be coded in the following tasks:
- Development setup (docker-compose, minio, redis and workers)
- uploader and feature extractor workers
Before start, verify if you have the following things installed:
- Docker and docker-compose
- Go (I'm using 1.22.4)
- Make
For install from source, first you need:
- clone repository
git clone https://github.com/roqueando/askyourdoc.git
- build workers (for now just have uploader)
make build module=uploader
This project is like a bunch of workers sending and consuming data from queues and pubsub, so for this, just up the containers:
docker-compose up -d