better model

This commit is contained in:
Adam 2023-02-12 20:14:11 -05:00
parent 7a0e2b1411
commit eac217cc09
5 changed files with 19 additions and 15 deletions

View file

@ -1,13 +1,11 @@
bin
__pycache__/
bin/
lib/
build
Dockerfile-alpine
lib
__pycache__
*/__pycache__
*/*/__pycache__
*/*/*/__pycache__
run
*/__pycache__/
*/*/__pycache__/
*/*/*/__pycache__/
pyvenv.cfg
readme.md
run
test
chatbots_api.tar.gz
chatbots_*

View file

@ -3,6 +3,6 @@ FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt requirements.txt
ENV PYTHONUNBUFFERED=1
RUN python3 -m pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "uvicorn", "chatbots:api", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000", "--reload"]

View file

@ -1,5 +1,11 @@
#!/bin/bash
docker build --tag chatbots_api .
docker save chatbots_api | pigz > chatbots_api_$(uname -m).tar.gz
FILE_PATH="../chatbots_api_$(uname -m).tar.gz"
if [ -f $FILE_PATH ]; then
rm $FILE_PATH
fi
docker build --tag chatbots_api .
docker save chatbots_api | pigz > $FILE_PATH

View file

@ -1,5 +1,5 @@
fastapi
uvicorn
transformers
--extra-index-url https://download.pytorch.org/whl/cpu/torch
--extra-index-url https://download.pytorch.org/whl/cpu
torch

View file

@ -7,7 +7,7 @@ tokenizer = AutoTokenizer.from_pretrained(
"microsoft/DialoGPT-large", padding_side='left'
)
model = AutoModelForCausalLM.from_pretrained(
"src/bots/cartman"
"src/bots/cartman_med_3ep"
)