Shaun Berryman
Shaun Berryman
https://github.com/gooofy/py-kaldi-asr/blob/a4e5b1ed2fc193e957938755b19810cdebe766e3/kaldiasr/nnet3_wrappers.cpp#L199 When using kaldi directly I've been able to pass `--frame-shift=0.03` for a chained model to get the correct timestamps for word alignment. Right now it looks like calling `get_word_alignment`...
https://github.com/waleedka/modern-deep-learning-docker/blob/36ae632f5b90af34458e196aea52406799139b93/Dockerfile#L133-L134 While it would be great if this reduced the image size, it has zero effect as it is on a different layer. The only way this would be of...
This keeps it consistent with the rest of the printing
I would like to log some searches going on in the system but I don't need to reply back. In seneca-mesh there is the concept of `model:consume` and `model:observe`. I...
While it would be nice if all JSON payloads were under 100KB, that won't be the case 100% of the time. Express 4 uses the [body-parser](https://github.com/expressjs/body-parser#limit) package to decode JSON...
https://github.com/kanongil/node-hls-segment-reader/blob/86499532f115a17b6ba98bd6209a1cd1c45ae090/lib/segment-reader.js#L32-L47 You have hard coded that array and I've run into a case where I have a MIME type of `application/octet-stream`. I've also come across MIME type of `application/binary` Thoughts...
It looks like you took care of cookies when key fetching in your decrypter but not for actually pulling down a stream. I need to pass a cookie to HlsSegmentReader...
The backup full/incremental charts are using the old `apiVersion: batch/v1beta1` value which prevents use on k8 version 1.25+. `batch/v1` has been stable since 1.21. - https://github.com/dgraph-io/charts/blob/master/charts/dgraph/templates/backups/cronjob-full.yaml#L15 - https://github.com/dgraph-io/charts/blob/master/charts/dgraph/templates/backups/cronjob-inc.yaml#L15 What are...
Thanks for the excellent blog post, looking forward to training my own model when I get back from vacation. In the mean time I went to test your pre-trained model...
Type: https://pkg.go.dev/github.com/google/uuid Sample struct: ```golang type ProjectByIdWire struct { Id uuid.UUID `path:"id"` } ``` I would like to change the default binding for that type to use `Parse(s string) (UUID,...