Jimmy Lin
Jimmy Lin
@DanielKohn1208 and @wu-ming233 might be interested in looking at fusion. Using this thread to track progress. Starting point: https://link.springer.com/chapter/10.1007/978-3-030-99736-6_41 @cadurosar has some code here: https://github.com/castorini/anserini/pull/2355
@16BitNarwhal will work on this. A few resources: + https://stackoverflow.com/questions/30967822/when-do-i-use-path-params-vs-query-params-in-a-restful-api + https://stackoverflow.blog/2020/03/02/best-practices-for-rest-api-design/ @16BitNarwhal will propose a few designs... @sahel-sh and @ronakice and I will provide feedback. See https://github.com/castorini/rank_llm/issues/110 for what...
Running: ``` java -cp `ls target/*-fatjar.jar` io.anserini.reproduce.RunMsMarco -v 2 ``` Getting some errors: ``` # Running condition "bm25-segmented": BM25 v2.1 Segmented Corpus (k1=0.9, b=0.4) - topic_key: msmarco-v2-doc-dev Running retrieval command:...
Today, you can run regressions with the fatjar directly: https://github.com/castorini/anserini/blob/master/docs/fatjar-regressions-v0.35.1.md Today, you can also do this: ``` java -cp `ls target/*-fatjar.jar` io.anserini.reproduce.RunMsMarco ``` These aren't aligned. `RunMsMarco` only runs a...
Implement adapters so that we can play with Cassovary graphs within GraphJet.
Now that we have a directed graph implementation, would be nice to have a PageRank implementation. We could crib the implementation from Cassovary here: https://github.com/twitter/cassovary/blob/master/cassovary-core/src/main/scala/com/twitter/cassovary/algorithms/linkanalysis/PageRank.scala In general, would be nice...
One thing that makes the codebase difficult to understand is that there are _waaaay_ too many layers of indirection and classes that don't do much. One opportunity for simplifying is...
It should be possible to use GraphJet for monopartite directed graphs. I can see this as a common usage scenario. My plan is to implement monopartite directed graphs as wrappers...
Currently, the bipartite graph API does not provide the ability to iterate through nodes, either on the left or on the right. To provide this feature, we need to add...
hey @rodrigonogueira4 this isn't being actively worked on anymore right? If so, we should remove the files from GCP to save some 💵 - make sure I have a complete...