godefv
godefv
I have tried to replace the `abort()` call by returning something, but I then get a segfault. I will let you know if I find something.
I was not using the Alphabet API myself. My issue was that I initialized my Scorer improperly before calling `ctc_beam_search_decoder()`. Maybe, the code there is also not using the Alphabet...
By the way, the time before getting answered on this project is amazingly short. It is pretty cool !
I can do it eventually, but I don't know when. I wonder if it would be a good case to throw an exception instead of an error code. I usually...
Clear your cache ! This function silently uses cache if available, totally ignoring the data you pass as input. In my case, creating the whole dataset was too slow, so...
Here is why the display shows as disconnected. > Option "AllowHMD" "string" > > Most Virtual Reality Head Mounted Displays (HMDs), such as the HTC VIVE, require special image processing....
In my case, steamVR chooses my main display instead of my valve Index. Here is the log from ~/.steam/steam/logs/vrcompositor.txt . ``` Thu Oct 22 2020 22:24:53.138781 - HMD deviceUUID is...
I have also tried to "Reset Headset" without success. I also have the valve display off and a window on my main screen, showing what should be in the headset....
Problem solved here. You can have more X logs with `startx -- -logverbose 6`. Then, check your logs (`less /var/log/Xorg.0.log`). Look for a line with "Building ModePool for \". In...
ok, I didn't know about that. It seems that the idea of the operator| for monads is indeed chaining functions, but it doesn't work to chain transforms, folds, etc, right...