Spaces:
Running
Running
File size: 302 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/env bash
set -o errexit
set -o errtrace
pushd server/artemis/
python3 -m pip install -r requirements.txt
echo "Dependencies installed. Starting model installation..."
python3 -c "import detoxify; detoxify.Detoxify('unbiased')"
popd
echo "Model installed. Local classifier is ready to use."
|