LibreTranslate-Marathi / scripts /download_models.sh
SkyTraceX's picture
Deploy Marathi Translation API to Hugging Face Spaces
34059a0
raw
history blame contribute delete
281 Bytes
#!/bin/sh
set -e
# Auto-install any .argosmodel files present in the project root
for model in *.argosmodel; do
if [ -f "$model" ]; then
echo "Installing Argos model: $model"
python3 -m argostranslate.package install "$model"
fi
done
echo "Model install script complete."