aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2024-11-27 16:52:29 +0100
committerLia Lenckowski <lialenck@protonmail.com>2024-11-27 16:52:29 +0100
commit71ba8b2c3e97cf7387f6021cb440e2845e86f303 (patch)
tree160942c668aa45cf562c91458e2527a03933ad2f
parent528964f2241f715812798a20f204c330cb527d02 (diff)
downloadembeddings-sort-71ba8b2c3e97cf7387f6021cb440e2845e86f303.tar
embeddings-sort-71ba8b2c3e97cf7387f6021cb440e2845e86f303.tar.bz2
embeddings-sort-71ba8b2c3e97cf7387f6021cb440e2845e86f303.tar.zst
docu fix
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3c9b633..e6189f8 100644
--- a/README.md
+++ b/README.md
@@ -28,9 +28,9 @@ Options:
```
## Insides
-The chrisofides implementation uses an approximated min-weight matching algorithm, which may be non-ideal, though I haven't benchmarked how much of a difference it makes (mainly due to the implementation complexity of an exact algorithm, which would also increase the implementations complexity from O(n²) to O(n³) where n is the number of given images).
+The christofides implementation uses an approximated min-weight matching algorithm, which may be non-ideal, though I haven't benchmarked how much of a difference it makes (mainly due to the implementation complexity of an exact algorithm, which would also increase the implementations complexity from O(n²) to O(n³) where n is the number of given images).
-The 2-Opt refinement algorithm uses a doubly linked list with implicit iteration order to be able to do 2-Opt swaps in O(n), bringing a 2-Opt iteration to O(n²) complexity.
+The 2-Opt refinement algorithm uses a doubly linked list with implicit iteration order to be able to do 2-Opt swaps in O(1), bringing a 2-Opt iteration to O(n²) complexity.
## Compatibility
`embeddings-sort` has, at some point, worked on both linux and windows.