Ravi Mashru
Ravi Mashru
Here's how the Google Calendar widget on my phone does it. You're right, this does make the height of the rows change from month to month to keep the total...
Hey! 👋 Thanks for using the plugin. I'm glad you find it useful. 🙂 I spent some time looking at the issue and it looks like the problem is with...
The path should be visible in the status bar (bottom-left part of the screen). However, I just noticed that there is no status bar visible at all on the iPad....
It turns out that the mobile app (which includes the iPad version) does not support adding custom status bar items (see https://discord.com/channels/686053708261228577/707816848615407697/832321286092882012). Since this is where the plugin displays the...
As soon as I marked the plugin as desktop only, another user reached out saying that they use the command on Android (see https://github.com/ravimashru/obsidian-show-file-path/issues/12), so I enabled mobile mode again...
@JonathanSamelson Yes, you're right. That postprocess function works only if the model outputs have the shape `[(1, 52, 52, 3, 85), (1, 26, 26, 3, 85), (1, 13, 13, 3,...
Honestly, your guess is as good as mine. Is it possible for you to share the code you wrote to create your model in TensorFlow? I can try looking at...
@hoangkhoiLE I worked off the model weights already available here: https://github.com/onnx/models/tree/master/vision/object_detection_segmentation/yolov4/model You could maybe take a look at what changed in the repository https://github.com/hunglc007/tensorflow-yolov4-tflite.
I use it exactly like you: `sess = rt.InferenceSession("yolov4.onnx")` The versions that are currently working for me: ``` numpy==1.19.4 onnx==1.7.0 onnxruntime==1.5.2 protobuf==3.13.0 six==1.15.0 typing-extensions==3.7.4.3 ``` Also, I see that someone...