Viewing a single comment thread. View all comments

JustHereForATechProb t1_j47yxsr wrote

Hi, I'm making a automatic bookmark organizer.

It consists of two tasks

  • Finding similarity between bookmarks, in order to put them in the same folder. [Solved Using the "all-MiniLM-L6-v2" model.]
  • Tagging, bookmarks with relevant tags

A Bookmarks contains:

  • Page title (String)
  • URL (String, regex'd "\W+" filtered)

Right now. I am looking for a model, that, given a string gives tags. Or to put in other words, given list/string of different words, give back a set of words that generalize/summarize said string.

But I wouldn't know what kind of machine learning task that would be categorized as so I wouldn't know what to search for.

Any suggestions would be most helpful.

1