Daniel Bos

Results 37 comments of Daniel Bos

It would be useful with long opaque URLs, where it's not clear from the URL itself what it is pointing to. As to implementation, I suppose you could do something...

@lalitmee I'm not sure if Telescope supports some kind of drill-down, where after selecting the folder it shows a new dialog with the contents of that folder. If that is...

@gsbabil that is possible: ```lua local oldwrap = vim.wo.wrap require("zen-mode").setup { -- ... on_open = function(win) oldwrap = vim.wo.wrap vim.wo.wrap = true end, on_close = function() vim.wo.wrap = oldwrap end,...

> Is this math32 dependency necessary? Not strictly required, but it avoids a bunch of type conversions as Go does most floating point math in `float64` rather than `float32`. This...

Yes, consistently. `gleam run` will terminate with the same message in milliseconds each time, so it seems like its not even trying. Interestingly, even if I add `repo.hex.pm` to my...

@lpil I have no clue what's going on. Today after rebooting it suddenly started working. I've tried both `1.0.0` and `nightly` a couple of times, and both are fetching from...

This gives the same result as in Python: ```go fmt.Printf("%#v - %d\n\n, result.Vector.Normalize2(), result.Vector.Size()) ```

`jinaai/jina-embeddings-v2-base-en` (and other variants) also look promising.

I've been playing with https://github.com/nlpodyssey/cybertron which is pure Go (but I guess CPU only?) and at least supports `all-MiniLM-L6-v2`, `e5-*-v2`, `bge-*-en-v1.5` and `ember-v1`. I did some testing with the [STS-2016](https://alt.qcri.org/semeval2016/task1/)...