Begin implementation, basic inferenece

This commit is contained in:
2024-10-21 22:23:48 +02:00
parent 006db518f2
commit 20429616f7
14 changed files with 167 additions and 86 deletions

View File

@@ -5,8 +5,9 @@ COPY ./sia/ /root/sia/
RUN pip3 install -r requirements.txt
FROM requirements AS test
COPY ./tests/ /root/tests/
COPY ./test/ /root/test/
RUN mkdir -p /root/model
CMD python3 -m unittest discover tests
CMD ["python3", "-m", "unittest", "discover", "-p", "*test.py", "-v"]
FROM requirements
FROM requirements
CMD ["python3", "-m", "sia"]