2018/indiealgorithm

From IndieWeb

Indie algorithm/indiefilter was a session at IndieWeb Summit 2018.

Notes archived from: https://etherpad.indieweb.org/



IndieWeb Summit 2018
Session: #IndieAlgorigthm
When: 2018-06-26 15:55 ("Sun" room - no video)
Synopsis: As 2018 is the year of the Indie reader with the release of microsub servers/clients, the next big frontier is sure to be creating white-box algorithms to allow people better control over what they're reading.

Participants

Notes

Three main parts to an algorithm:

  • Discovery (adding)
  • Filtering (removing)
  • Reordering (ranking)

Three different categories of input data:

  • Global (everyone)
  • Friends/followings
  • Just yourself

Privacy is important, especially when you use global and friends/followings' data. Many of the signals are sensitive and private, both explicit (likes, reposts, etc) and implicit (opened link, read time, etc). Can consider differential privacy techniques, but those take significant investment.

Filtering is similar to reordering with a cutoff threshold, but not the same. Example: if you're all caught up, and one new item arrives, it would always be above a cutoff threshold, but if your rules filter out, it should still be hidden.

Prior art:

Implementation thoughts:

  • Hard to do reordering and discovery in a microsub client or other frontend because you generally need full access to all feeds/items at once.
  • Filtering is more doable purely in client.

Project ideas:

  • Reimplement Nuzzel over pure IndieWeb(microformats) data in a microsub backend. Count all indie likes/reposts seen for each item, then for each user, count how many are from their followings, then reorder feed items by those counts. Could also surface items liked by your followings in feeds you don't subscribe to in a new "discover" channel.
  • Implement filtering purely client side, based on NewsBlur. Allow blacklisting by author, tag, post type, containing photo/video/audio, or arbitrary substring match in name or content.


See Also