ONNX
security
malware-detection
turentomer's picture
Make published source self-contained
a2a3348 verified
Raw
History Blame Contribute Delete
367 Bytes
// Command vigil-compact is the isolated, fail-closed whole-package ONNX
// classifier. Its import graph deliberately excludes every legacy classifier,
// heuristic scorer, and fallback implementation.
package main
import (
"os"
"huggingface.co/turenlabs/Vigil/source/pkg/compactcli"
)
func main() {
os.Exit(compactcli.Run(os.Args[1:], os.Stdout, os.Stderr))
}