Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
amithkoujalgi committed Dec 17, 2023
1 parent a3417bc commit 755bede
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
17 changes: 8 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
start:
docker-compose -f ./docker-compose.yaml down -v; \
docker-compose -f ./docker-compose.yaml rm -fsv; \
docker-compose -f ./docker-compose.yaml up --remove-orphans;
docker-compose -f ./docker-compose.yml down -v; \
docker-compose -f ./docker-compose.yml rm -fsv; \
docker-compose -f ./docker-compose.yml up --remove-orphans;

start-gpu:
docker-compose -f ./docker-compose-gpu.yaml down -v; \
docker-compose -f ./docker-compose-gpu.yaml rm -fsv; \
docker-compose -f ./docker-compose-gpu.yaml up --remove-orphans;

docker-compose -f ./docker-compose-gpu.yml down -v; \
docker-compose -f ./docker-compose-gpu.yml rm -fsv; \
docker-compose -f ./docker-compose-gpu.yml up --remove-orphans;
stop:
docker-compose -f ./docker-compose.yaml down -v; \
docker-compose -f ./docker-compose.yaml rm -fsv;
docker-compose -f ./docker-compose.yml down -v; \
docker-compose -f ./docker-compose.yml rm -fsv;
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,11 @@ https://github.com/amithkoujalgi/ollama-pdf-bot/assets/1876165/40dc70e6-9d35-417

| Model | Device | Operation | Time Taken |
|--------|--------|-------------------------------------------|------------------|
| Llama2 | PC | Load embedding model | ~3-4 minutes |
| Llama2 | PC | Load embedding model | <1 minute |
| Llama2 | PC | Create embeddings and vector store | ~3-4 minutes |
| Llama2 | PC | Answer the questions on the uploaded PDFs | ~5-10 seconds |
| Llama2 | Laptop | Load embedding model | ~8 minutes |
| Llama2 | Laptop | Load embedding model | ~2 minutes |
| Llama2 | Laptop | Create embeddings and vector store | ~8 minutes |
| Llama2 | Laptop | Answer the questions on the uploaded PDFs | ~100-130 seconds |

### Improvements
Expand Down

0 comments on commit 755bede

Please sign in to comment.