Instructions to use EnigmaConsultant/huntr-poc-nemo-weightspace-behavioral-backdoor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use EnigmaConsultant/huntr-poc-nemo-weightspace-behavioral-backdoor with NeMo:
# tag did not correspond to a valid NeMo domain.
- Notebooks
- Google Colab
- Kaggle
File size: 298 Bytes
af7a77c | 1 2 3 4 5 6 7 8 9 | #!/bin/sh
# modelscan sees a .nemo as an unknown extension -> no handler -> reports clean.
VP="$(dirname "$0")/venv/bin"
NEMO="$(dirname "$0")/content_safety.nemo"
"$VP/pip" install -q modelscan 2>/dev/null
echo "=== modelscan on the backdoored .nemo ==="
"$VP/modelscan" -p "$NEMO"
echo "exit=$?"
|