diff options
author | Anthony Wang | 2024-07-27 16:09:57 -0500 |
---|---|---|
committer | Anthony Wang | 2024-07-27 16:09:57 -0500 |
commit | 6cfff24189ffce3b239c1af2cb744a26a07b9177 (patch) | |
tree | bbcc91dbe3d2391d50a56bc011b4ee790ae871fc | |
parent | ebef0bf87a22630ea2d5160aaf51051767e92fa6 (diff) |
Add symlinks in cwd to results
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | client.py | 10 |
2 files changed, 10 insertions, 2 deletions
@@ -14,4 +14,4 @@ If you don't need PyTorch with GPU support, first run `pip3 install torch torchv This program uses a client-server architecture to watch directories with inotify and keep the model loaded in memory. It takes around 15 seconds to load the model so it wouldn't be great if every query had to wait on that. -Run `python server.py DIRS_TO_INDEX` to start the server. Then, run `python client.py SEARCH_TEXT NUM_RESULTS` to get a list of the most similar files. You can pass this to an image viewer such as `gwenview $(python client.py SEARCH_TEXT NUM_RESULTS)` to get thumbnails of image results. Note that Gwenview doesn't preserve the order of the images. +Run `python server.py DIRS_TO_INDEX` to start the server. Then, run `python client.py SEARCH_TEXT NUM_RESULTS` to get a list of the most similar files. You can pass this list to an image viewer such as Gwenview to view image results. Note that Gwenview doesn't preserve the order of the images. Alternatively, add a third parameter to `python client.py` and it will symlink `res0`, `res1`, and so on to the files on the list. @@ -3,4 +3,12 @@ import sys import xmlrpc.client proxy = xmlrpc.client.ServerProxy(f"http://localhost:{os.environ.get("PORT", 8000)}") -print("\n".join(proxy.search(sys.argv[1], sys.argv[2]))) +res = proxy.search(sys.argv[1], sys.argv[2]) +print("\n".join(res)) + +if len(sys.argv) > 3: + for path in os.listdir(): + if path.startswith("res"): + os.unlink(path) + for i, path in enumerate(res): + os.symlink(path, f"res{i}") |