Christian Himpe
Christian Himpe
I would like to suggest an additional verb which reflects changes to the code leading to some form of improvement such as better performance, readability, structure etc. This does not...
Calling `ontology_viz.py` it is not responding with output. If I Ctrl+C abort the process, I get the following error: ``` Traceback (most recent call last): File "/home/ch/repos2/ontology-visualization/ontology_viz.py", line 23, in...
When using the `label_property` it is required that `JSON` array is passed in the `config.json`, even when only a single property URI is passed. If this is wanted behavior a...
When a forward slash (escaped with a reserved character escape sequences) is part of a prefixed URI, for example: ``` doi:10.0000\/foobar ``` it is rendered as `nsX:foobar` with `X` a...
When using the `label_property` configuration, there are no line breaks in the resulting labels of nodes, while when not using this configuration the original rendered labels of nodes pointed have...
Dear Developers, I would like to ask if you plan, or could consider providing a Homebrew package (see: https://brew.sh ) for ArcadeDB? Thank you very much
Using the `ARMv7` target results in the compiler option `-mfpu=vfpv3`, yet some ARMv7 support `vfpv4`, for example theAllwinner H3 used in various single board computer. Could an additional ARM target...
Are there plans to make this at least partially usable in GNU Octave?
The state weighting closure ([emgr.m, line 180](https://github.com/gramian/emgr/blob/master/emgr.m#L180)) should be: ``` wei = @(m) 1.0 ./ max(sqrt(eps),vecnorm(m,2,1)); ``` similarly [emgr.py, line 212](https://github.com/gramian/emgr/blob/master/py/emgr.py#L212) should be: ``` return 1.0 / np.maximum(math.sqrt(np.spacing(1)),np.linalg.norm(m, 2, axis=0))...
## What does this PR do? This adds a `arcadedb.databaseComment` setting which allows to add metadata about the database. ## Motivation Providing context about a database. ## Additional Notes This...