ramsey-coding

Results 23 comments of ramsey-coding

@piskvorky @gojomo when would Gensim provide support for BM25? This feature is hanging for a long long time now. Would this ever made it to the library!

@Witiko what's the equivalent API call for - `bm25.get_top_n(tokenized_query, corpus, n=80)`

> I don't think there is an equivalent APU call. Get all similarities, run argmax over them and take the top 80. @Witiko I don't follow it. You are saying...

@Witiko also the API of gensim is neither user friendly nor convenient. It appears it just provide a `similarity score` and does not even provide the `original document`. Devs need...

> What I am saying is that it will be significantly faster than rank-bm25. got it

@Witiko you are phenomenal, thanks for all the great feedback. I have one more question: If I set `num_best=80` here: ``` SparseMatrixSimilarity(bm25_corpus, num_docs=len(corpus), num_terms=len(dictionary), normalize_queries=False, normalize_documents=False, num_best=80) // I set...

@AlanSwift @hugochan @teddylfwu @SaizhuoWang this is a fantastic library. And to the best of my knowledge, this is the only GNN library that is NLP focused. Would like to give...

@AlanSwift @hugochan @teddylfwu @SaizhuoWang Furthermore, I see in the description work on configuration system is stated as a **New Feature**: `[New Feature] A brand new configuration system based on OmegaConf`...

Would be great to have an example of generative models like Graph2Seq like Graph2RNN, Graph2transformer, or GraphTransformer implementation. Wondering whether would it be added at some point?

@Witiko can you please provide any insight?