cyberbeat

Results 67 comments of cyberbeat

I now tried to use a custom neural network. But here I got problems pulling in the inputs for the DL4J EmbeddingSequenceLayer: ``` new CustomNeuralNetwork() ... .withFeaturesInputFromNumberSequence("char_sequence", new Indices().withMaxUniqueObjects(1000).withMinimumFrequency(10).withInput(truncatedNodeTexts), 50,...

I think I did a workaround, from your example: ``` // Create the neural network from our computation graph, specifying its feature and label inputs. // // In reality, the...

I cannot compile under linux: first problem: the was no -lSDLMain, could be safely removed, I think But now many other errors: make -f Makefile.linux gcc -ggdb -m32 -O0 anim.o...

I can reproduce this with newest puppeteer 5.2.1.

This was confirmed by multiple people. It should be marked as confirmed.

I did not know anything about RVC3 yet. Mhm, at least it should be no such great effort to allow another input channel for the feature-tracking-node, which would take some...

Thanks for clarifying. What would be the starting point to develop and upload complete own firmware blobs to the device? Is there some documentation about that somewhere already? And would...

Yes, I had the same problem, and succeeded to fix the cause of this in file `g2o/solvers/csparse/CMakeLists.txt` ``` target_include_directories(csparse_extension PUBLIC $ ``` should be transformed to ``` target_include_directories(csparse_extension PUBLIC ${CSPARSE_INCLUDE_DIR}...

I am using the api, reading many form-fields, like this ``` api.SetRectangle(..); .. = api.GetUTF8Text(); ``` With form-fields having different patterns (like dates and other patterns like `[A-Z]\d{9}`). It would...