Bernhard Liebl

Results 52 comments of Bernhard Liebl

@bertsky I am no longer able to even start up the GESIS notebook. I switched to Google Colab for testing, and I cannot reproduce any crashes there. Any here is...

Yes, exactly. In theory, `multithreading` should already give good concurrency, since pyalign will release the GIL once it is inside the C++ code and does the heavy computations - I...

By the way, running `findIndentation` on the code gives very reasonable results, namely `{ '11': 1, '24': 1, '28': -1, '41': 1, '42': -2 }`, which are exactly the expected...

@philippjfr As of 2022/12/14, this now works by attaching to the points itself (i.e. graph.nodes), but it still does not work when attaching to the graph. Also see https://discourse.holoviz.org/t/selection-on-graph-nodes-doesnt-work/3437

Here is some sample code showing that info is propagated from `graph.nodes` but not from `graph` as a whole: This works: ``` full_graph = hv.Graph.from_networkx(nx.karate_club_graph(), nx.spring_layout) def node_view(index): return hv.Text(.5,...

@rz65hege I updated the links, these should work now, however it might be a feat to get the models running due to the TensorFlow version used in Origami.

@rz65hege For now, here's a manual dropbox link for the two models: https://www.dropbox.com/scl/fo/rj0k7k2x89zm6gpk4roiq/h?dl=0&rlkey=qeckbmw4qzfryzvdym458uqqp Both folders should be downloadable as zip. I need to figure out how I can turn this...

The code base of Origami at this point is very static, I don't see any changed in the foreseeable future. Having an OCR-D implementation would make the OCR-D version the...

@sepastian I'm a bit hesitant to merge this, as `shapely` is in https://github.com/poke1024/origami/blob/master/requirements/conda.txt. This might be more of an documentation issue. The current idea here is that packages that exist...

> How is it possible for the page segmentation to create overlapping regions? Since the model is basically a pixel classifer, it should force some flat partitioning. (Or is this...