Daniel Darabos
Daniel Darabos
Chapter 4 has a section titled [Example: Counting Github stars](http://nbviewer.jupyter.org/github/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/blob/master/Chapter4_TheGreatestTheoremNeverTold/Chapter4.ipynb#Example:-Counting-Github-stars): > What is the average number of stars a Github repository has? How would you calculate this? There are over...
For example, ```python import networkit as nk G = nk.graph.Graph(2) G.addEdge(0, 1) G.addEdge(0, 1) s = nk.sparsification.TriangleEdgeScore(G) G.indexEdges() s.run() print(s.scores()) ``` prints ``` [18446744073709551615, 18446744073709551615] ``` ChibaNishizekiTriangleEdgeScore is also wrong,...
I've just built Vectiler and tried the example command line from the README. It fails with this error message: ``` $ build/vectiler.out --tilex 5242/5260 --tiley 12642/12666 --tilez 15 --terrain 1...
Resolves #258. No import button! The corresponding Python code is: ```python lk.importParquet(eager='no', filename='/home/darabos/eg.parquet', schema='name: String, age: Double') ``` Outstanding issues: - Currently you can only "import" a file this way...
When we start LynxKite with `stage/bin/lynxkite` it starts Sphynx in the background. It has to launch two processes: a `java` process that runs LynxKite and a `lynxkite-sphynx` process for the...
Currently all the import operations create a copy of the input data inside the `KITE_DATA_DIR`. This makes sense in general, but with Parquet files we are essentially writing out the...
While onboarding @lacca0 I explained a lot of what's happening in `MetaGraph.scala` and other core files. But we really should have more of this explained in the form of comments....
``` File name specification should start with a registered prefix (XYZ$) ``` `` is supposed to mean "pick a filename, I don't care what, just be sure it works". I...
In geographic visualizations the blue legend text has very low contrast against the sea. It's not great against the land either. (Thanks @Gabitany for reporting it.)
LynxKite checks a "PID" file on startup and won't start if it exists. I guess we were worried about running duplicate processes at some point, or we just saw a...