ensmallen
ensmallen copied to clipboard
🍇 Ensmallen is the Rust/Python high-performance graph processing submodule of the GRAPE library.
Some (or all?) dependencies aren't getting installed by pip. Example: The `cpuinfo` module may not get installed by pip, but it's imported in [the `__init__.py`](https://github.com/AnacletoLAB/ensmallen/blob/master/bindings/python/ensmallen/__init__.py). On a fresh pip install...
While we (@cmungall @caufieldjh @hrshdhgd) were working on [oakx-grape](https://github.com/INCATools/oakx-grape), we observed that it'd be useful in this and other use cases to be able to deal with edge lists which...
Hi, I am trying build a conda package, but when I run **conda skeleton pypi ensmallen-graph**, I get the following error: ``` with open(os.path.join(src_dir, "setup.py")) as setup: FileNotFoundError: [Errno 2]...
currently debugging with ensmallen is hard as we just see CURIEs, no labels. It would be useful to have labels for multiple reasons: - sanity check/debugging - drop in networkx...
For directed graphs, the term neighbors is used in a non-standard way E.g. https://www.cs.cmu.edu/afs/cs/academic/class/15210-f14/www/lectures/graph-intro.pdf _Neighbors. A vertex u is a neighbor of (or equivalently adjacent to) a vertex v in...
We would like to add some more graphs to the automatic retrieval mechanism. Currently, we support only StringPPI (human version), CompleteStringPPI (cross-species) and KG-COVID-19. Which graphs should we add to...
Hello, This is my code: ```rust use graph::GraphBuilder; fn main() { println!("Hello, world!"); let mut graph_builder = GraphBuilder::new(None, Some(false)); } ``` This is my `Cargo.toml` file: ``` [package] name =...
Good morning! I thought I'd contribute, as I found this helpful; I wanted to read a large graph from previous existing datasets of nodes and edges; those datasets were kind...
Hi, I'm trying to package ensmallen and other related packages on conda-forge and would be grateful if you could tag the latest version 0.8.96 in this repo. I see the...
Hi, I just noticed that the default values of `Graph.dump_nodes()` mentioned in the docs are different than what the code acutally does. From the python docs: ``` > G.dump_nodes? ......