Martin Garbade
Martin Garbade
@pqn As far as I understood this you're using `slerp` only for interpolating between two vectors (`low` and `high`). How do you sample `z` for the generator during GAN training?...
just testing around a bit (didn't excessively test after rebasing onto current master). I guess I somehow lost the ``` "//mediapipe/calculators/tflite:tflite_converter_calculator", "//mediapipe/calculators/tflite:tflite_inference_calculator", "//mediapipe/calculators/tflite:tflite_tensors_to_floats_calculator", ``` dependency needed for the example graph...
ok so the problem was related to building only the pose solution python build.py build --desktop cpu --opencv=cmake -v --verbose -c dbg --solution pose it works when I build the...
thx for feedback. will look into this asap (couple of days)
So I added some tests for "FloatVectorPacket". Unfortunately the test "At_ShouldReturnNewPacketWithTimestamp()" fails. I'm not exactly sure why. I assume data gets deleted after calling `packet.Get()`, so I'm not sure how...
never mind. I found the problem and fixed it
ok so I also pushed some MatrixPacket tests. However everything involving Get() is not yet working. Will look into that later... Get was not needed as the Packet is only...
I just tested the "Matrix Classification" example scene on a mobile device and got a "ResourceManager not found" error. I will look into that. Here the logcat: ``` 08-11 12:36:29.586...
Nevermind. Got it working on Android as well. I had to add AssetLoader.Provide(mew StreamingAssetsResourceManager()); and place the .bytes file into Assets\StreamingAssets
meanwhile it is working again. I applied two fixes (not sure if one or both did the trick) 1. Used VisualStudio 2022 instead of 2019 to compile the project. To...