From 44130b9b24d8e25937091e7426e374d0debc1d05 Mon Sep 17 00:00:00 2001 From: Jacob Silterra Date: Wed, 12 Jun 2024 10:01:12 -0400 Subject: [PATCH] Change demo script name inference -> predict. --- scripts/{run_inference_demo.sh => run_predict_demo.sh} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename scripts/{run_inference_demo.sh => run_predict_demo.sh} (79%) diff --git a/scripts/run_inference_demo.sh b/scripts/run_predict_demo.sh similarity index 79% rename from scripts/run_inference_demo.sh rename to scripts/run_predict_demo.sh index 8ac20b2..2d4f455 100755 --- a/scripts/run_inference_demo.sh +++ b/scripts/run_predict_demo.sh @@ -13,8 +13,9 @@ if [ ! -d "$demo_scan_dir" ]; then unzip -q sybil_example.zip fi -# Either python3 sybil/predict.py or sybil-predict (if installed via pip) -python3 sybil/predict.py \ +# If not installed with pip, sybil-predict will not be available. +# Can use "python3 sybil/predict.py" instead. +sybil-predict \ --loglevel DEBUG \ --output-dir demo_prediction \ --return-attentions \