Filip Dimitrovski

Results 9 issues of Filip Dimitrovski

What's your opinion on [group testing](https://en.wikipedia.org/wiki/Group_testing)? Here's a math analysis on it: https://members.loria.fr/ADeleforge/the-maths-of-pool-testing-mixing-samples-to-speed-up-covid-19-detection/ Infection rate ► Initial mini-pool size ▼ | 0.5% | 1% | 2% | 3% | 5%...

LKH is available for non-commercial use only. Our license reflects that: https://github.com/pyEntropy/elkai/blob/master/LICENSE The built wheels/pypi and `setup.py` should also have this notice in next versions.

The Python module should be clean, and that means the utility functions should be hidden from `__all__` and the actual functions should have proper docstrings. Version: 0.0.7

enhancement

Title sums it all. Implemented it because `grit` fails to build on Windows. The underlying implementation is decided by the compiler build tags, while being transparent to the user. The...

GraphQL and EdgeQL links both: * have circly icons with a letter * are of roughly rendered same width * have the same -QL suffix and the brain associates edges...

Assuming a 4D tensor in pytorch, `some_tensor[..., 0]` is equivalent to `some_tensor[:, :, :, 0]` * [x] Pylint passes * [x] Tests pass, torch results match tinygrad when adding ellipsis...

We need to find good names and data structures for solving VRP, VRP with time windows and/or pickup/deliveries. The LKH website has some abbreviations which are un-googlable and the file...

Considering that it depends on specific torch (torch==2.2.1) and possibly CUDA, many MacBooks won't be able to run some of the examples. If you want to run tests and notebooks,...

`isdir` is not supposed to be used with `~`: ``` >>> os.isdir("~/.cache") False >>> ``` It needs to be expanded to the user: https://github.com/autodistill/autodistill-grounded-sam-2/blob/d6eebed1c9fda3cb0a1bf5aba3773467ce1deb54/autodistill_grounded_sam_2/helpers.py#L73-L75 and you already did in some...