mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-16 22:46:47 -05:00
11 lines
302 B
Bash
11 lines
302 B
Bash
#!/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."
|