Erik Ziegler

Results 98 comments of Erik Ziegler

I use 0.63. I wouldn't downgrade below 0.60 because there are many differences between 0.5 and 0.6 which may break your project. Are you using expo by any chance? Where...

Ah yeah, you can see in the Gist the module's name is "Kaldi" not "KaldiVOSKModule". https://gist.github.com/erksch/f3d46b478b3912a00a4dc25726d0260c#file-kaldivoskmodule-kt-L40

No the filesDir is not the highest level. Sorry, but this get's rather complicated to explain. Inform yourself about storing files in Android: https://developer.android.com/training/data-storage. About filesDir here: https://developer.android.com/training/data-storage/app-specific Choose a...

@Aktsvigun you can checkout our repo https://github.com/erksch/fnet-pytorch. We reimplemented the architecture precisely to such a degree that we can even use the official checkpoints (converted from Jax to PyTorch).

@BinchaoPeng you can checkout our repo at https://github.com/erksch/fnet-pytorch. We implemented the whole architecture and offer official checkpoints converted from the original Jax model.

Thank you very much! If you have more ideas for it, feel free to open issues in the repo :)

@huCHENXI123456 Take a look at the README in the project and open issues there if you have any.

@aabramovrepo Hey just wanted to let you know, that I plan to integrate 3D object detection boxes to the [viewer](https://github.com/erksch/waymo-open-dataset-viewer) this week. After the update, you should be able to...

This took me ages to figure out ```typescript onShow={() => { setTimeout(() => { inputRef.current?.blur(); inputRef.current?.focus(); }, 100); }} ``` also works in an `useEffect`: ```typescript useEffect(() => { const...

Thank you for your reply and the insights! That's a lot of time :sweat_smile: Maybe as you speak of it, what about your language models? How long did it take,...