Can you retrain RAKE?

110 views Asked by At

Is it possible to retrain RAKE (Rapid automatic keyword extractor)?

If so, how?

Thank you!

1

There are 1 answers

0
Ryan Walker On BEST ANSWER

No. RAKE is an unsupervised, domain independent model that extracts keywords using patterns in the documents it sees at runtime. There's no training step in RAKE but you can change how it behaves by:

  • Providing different stopword lists
  • Changing parameters available in the particular RAKE implementation you are using, e.g. this one lets you set minimum word frequency thresholds for keywords extracted.