Sep Dehpour

Results 208 comments of Sep Dehpour

Haha, yeah it is not designed for big data sets at all. I will need to rewrite it maybe in Go or something other than Python to be memory efficient....

Hi @ksmithra There are some pieces of the original package that I never open sourced and would make it easier to achieve what you are describing. If you checkout https://fair.com...

If you feed it sentence by sentence intead of word by word it may work. But then the user has to start with the same words in the beginning of...

Hi @AndreaSottana These are some features that I have not got the permissions to opensource yet. The easiest thing to do is to also feed those individual words to fast_autocomplete....

Hello @Morriaty-The-Murderer Fast-Autocomplete does not have a live update to the graph feature yet. I have some plans to allow live updates and "syncing" but not implemented it yet. However...

@Shivanandroy Sorry I just noticed your question. In the current implementation, when it reaches a word in the graph, the word has a higher score than a word it has...

Anybody has been successful at running it with Unix sockets as k8 Daemonsets? It seems like a volume needs to be mounted on each pod and the socket needs to...

@enocom This is how I'm doing it with TCP. Curious how to do it with Unix sockets. ```yaml apiVersion: apps/v1 kind: DaemonSet metadata: name: cloud-sql-proxy namespace: default labels: app: cloud-sql-proxy...

The Readme.md says there is a `parser.loads` function but there is no such a thing: ``` >>> parser = cysimdjson.JSONParser() >>> parser.loads Traceback (most recent call last): File "", line...

Awesome! Thanks > On Oct 15, 2020, at 5:23 PM, markman123 wrote: > >  > This is the offending line: > https://github.com/uiri/toml/blob/master/toml/decoder.py#L946 > Working on a pull request now...