Charles Jekel

Results 176 comments of Charles Jekel

Okay so you can see users. Do you get the 500 error if you manually set a search distance? ```python import itertools import pynder XAuthToken='.....' session = pynder.Session(XAuthToken=XAuthToken) session.profile.distance_filter =...

> @cjekel here is the error I'm getting when running inside docker I haven't updated tindetheus on docker in a while. I still need to add a dockerfile which will...

Seems that you weren't the only one getting the 500 error on the distance update... Perhaps we should add an option in the config to disable the distance updates? https://github.com/cjekel/tindetheus/issues/12

I have been seeing this for awhile now, and I'm not sure why. I've generally attributed it to running out of 'free' likes for the day, and have a check...

I get this error when I'm using BusyBox sh. My sh version is shown with ```sh --help``` which displays ```BusyBox v1.30.1-Stericson (2019-03-17 10:12:06 EDT) multi-call binary.``` This is with BusyBox...

The dtw_path method returns this. Check out the example in the docstring. On Mon, Sep 5, 2022, 03:34 miladad8 ***@***.***> wrote: > is there any way to get aligned and...

It's not a `one to one` if that makes sense. The frechet distance is like the shortest leash, while DTW is more like a cumulative leash (or distance). That said,...

I think it's okay to use the metrics separately. It does not really make sense to get a similarity path specific to Frechet. It is not really a path. It...

I use OpenSUSE and have the same issue (Funny I'm actually involved in that Disqus post as well). It appears that Abaqus no longer works properly on modern linux. I...

In Python 3 ```python return self._points[self._points.shape[0] / 2] ``` creates an error because the division of two integers is a float. You'll need to change the line to something like...