Robert Knight
Robert Knight
The Arm issue has been resolved by https://blog.rust-lang.org/2025/10/16/docsrs-changed-default-targets/. Selecting the `aarch64-apple-darwin` platform in the "Platform" dropdown will now show Arm-specific docs. That leaves WASM.
On wasm32 it isn't sufficient to just build for the wasm32-unknown-unknown target. SIMD support requires the `simd128` target feature is enabled. Building the docs with: ``` cargo doc -p rten-simd...
The text detection threshold of this model is different than the default one. See https://github.com/robertknight/ocrs/discussions/160#discussioncomment-12939717. If using Ocrs, changing the threshold currently requires editing this value in the source: https://github.com/robertknight/ocrs/blob/0e85f3bace12b37b15b7b025c53c0d800caa23f0/ocrs/src/detection.rs#L33....
Did you start training from scratch or did you try to fine-tune an existing checkpoint? It is helpful to visualize the outputs at different stages to understand errors better. The...
Getting the Hypothesis client and comment section to show up at the same time is just the first problem. The comment section in Medium is a complex web application which...
You can add an annotation to an explicitly specified URL using [the API](https://h.readthedocs.io/en/latest/api/), but there is no user interface for this.
Closing as not planned for the reasons explained in https://github.com/hypothesis/client/issues/6547#issuecomment-2350574614.
This is now partly fixed. The icon is no longer clipped, but the baseline alignment hasn't been implemented:
Roughly speaking the layout algorithm assumes that your image is arranged into a hierarchy of lines -> paragraphs -> columns and tries to arrange words in reading order. There is...
`find_text_lines` is a function that takes a `&[RotatedRect]` of un-sorted word rects and returns a `Vec` of paragraphs sub-divided into lines. You can replace that with any function you like...