krackers
krackers
Seems to be bluecore firmware file, see https://hacker.instanet.net/Bluetooth/CS-118613-UG-5-BlueSuite-User-Guide.pdf I don't know how you would dump it or flash at SPI level though. Maybe try https://github.com/lorf/csr-spi-ftdi/issues/30
Possibly could use CSR bluesuite to do this. I think the ANC calibration info is stored in persistent store, would be curious if you're able to somehow use it. https://github.com/lorf/csr-spi-ftdi/issues/30...
The core algorithm actually seems not too different from other [lattice based segmenters](https://www.slideshare.net/FangdaWang2/introduction-to-japanese-tokenizer) (MeCab et al. are all in this family), and basically all end up constructing a DAG of...
>manually add a lot of scoring costs for edge cases or exceptions in grammar or otherwise You'd have to do the same with MeCab though, because putting aside the granularity...
Yeah that would certainly work I think (in fact CRF is one of the widely used ways to do NER, but there's probably other algorithms I'm not aware of). You...
Also for anyone following and interested in Japanese NLP, the best books here seem to be all in Japanese. E.g. ` 形態素解析の理論と実装 (Theory and Implementation of Morphological Analyzers)` by the...
Window screenshot works fine with libmpv clients as well. I think the issue is that you don't have `MPV_RENDER_PARAM_ADVANCED_CONTROL` set which is necessary for gpu screenshots. The distinction is a...
>But that makes it sound like mpv will fall back to software, not fail. That's only possible for non-window screenshot though, where it passes the mp_image through libswscale >it was...
Actually in your case maybe this is the issue ``` videoLayer.suspend() player.mpv.mpvUninitRendering() ``` You are suspend the render dispatch queue before uninit. But this means that if VO thread is...
@low-batt Thanks for digging that up. I'm a bit confused though: The situation where using `advanced_control` would deadlock seems to be something like the following: * You call `mpv_get_property` from...