You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, whenever I try to specify an algorithm parameter I get the following error:
$ python3 run.py --algorithm faiss_hnsw --dataset mnist-784-euclidean
2024-11-13 13:13:19,992 - annb - INFO - running only faiss_hnsw
Traceback (most recent call last):
File "/home/test/ann-benchmarks/run.py", line 7, in <module>
main()
File "/home/test/ann-benchmarks/ann_benchmarks/main.py", line 344, in main
raise Exception("Nothing to run")
Exception: Nothing to run
$ python3 run.py --algorithm faiss_hnsw
2024-11-13 13:13:26,071 - annb - INFO - running only faiss_hnsw
Traceback (most recent call last):
File "/home/test/ann-benchmarks/run.py", line 7, in <module>
main()
File "/home/test/ann-benchmarks/ann_benchmarks/main.py", line 344, in main
raise Exception("Nothing to run")
Exception: Nothing to run
However, if I disable the algorithms I don't want to test in the config.yml files and then I just run $ python3 run.py --dataset mnist-784-euclidean or $ python3 run.py, that works. So I think there's a bug; I just thought it may be useful to report it.
The text was updated successfully, but these errors were encountered:
Hi, whenever I try to specify an algorithm parameter I get the following error:
However, if I disable the algorithms I don't want to test in the
config.yml
files and then I just run$ python3 run.py --dataset mnist-784-euclidean
or$ python3 run.py
, that works. So I think there's a bug; I just thought it may be useful to report it.The text was updated successfully, but these errors were encountered: