wip deepseek r1

This commit is contained in:
2025-03-02 22:01:24 +01:00
parent b7e95d7398
commit b64f8d7d33
40 changed files with 6654 additions and 1859 deletions

View File

@@ -1,12 +1,20 @@
#!/bin/bash
docker build \
--target sia-test \
--tag sia-test \
--tag sia \
.
# Run tests within the SIA virtual environment
docker run \
--rm \
-ti \
--gpus=all \
-v /$(pwd)/model/:/root/model/ \
sia-test
-p 8080:8080 \
--env-file .env \
-v /$(pwd)/model/:/root/models/current/ \
-v /$(pwd)/iterations/:/root/data/iterations/ \
-v /$(pwd)/tasks/:/root/data/tasks/ \
-v /$(pwd)/user/:/root/data/user/ \
-v /$(pwd)/environment/:/root/data/environment/ \
-v /$(pwd)/:/root/sia/ \
sia /root/venvs/sia/bin/python -m unittest discover -v -p "*test.py"