Allen Roush

Results 32 comments of Allen Roush

Wow! Implementing TextRank properly dramatically increased the coherency of my summaries - I guess that it makes sense that doing a walk through the word-embedding powered graph will give more...

I haven't actually merged that code yet to the repo - I'll do that soon so that other people can try textrank or other graph algorithms

In principal, it should support Chinese. I have not tested this yet. Let me try to run an example and I'll provide instructions here

At the moment, it does not support Chinese, as I only wrote it with word based languages in mind. Given that I have quite a large Chinese userbase (just based...

@JonasxRie Yes, I promise I will get to doing this (let's hope before Christmas!) The main difficulty is converting the dataset from its current form into a token classification style...

And I will also make an effort to get trained models/weights posted and hosted on huggingface - but this may take some time.

I am about to experiment with integrating this package into my webapp - https://huggingface.co/spaces/Hellisotherpeople/Unsupervised_Extractive_Summarization which is a (somewhat incomplete) port of my package CX_DB8 - https://github.com/Hellisotherpeople/CX_DB8 I feel compelled to...

Well, the issue is that you need to give a POS tag to each word before it can disambiguate which vector to choose when doing the final pooling of your...

I'm going to experiment with what looks like some simple hacks (set the chance of using the generator network to 0 if a certain param is true) and I will...

So, I can make it only use the vocabulary available to it in the source text (by turning the probability of pointing to be 1 and generation to be 0),...