2022-03-15 20:07:31 +01:00
// @flow
import React from 'react' ;
import Page from 'component/page' ;
import MarkdownPreview from 'component/common/markdown-preview' ;
export default function PageFyp ( ) {
const content = ` # Recommended Videos - Alpha version available to Odysee Premium users
# # What is this ?
Our content catalog is growing fast . Each day , there are more creators using the platform . This is great news ! But it also makes finding things you would like to watch harder . Odysee ' s recommended videos tries to make it easier .
# # How does it work ?
Based on your video viewing history , Odysee tries to find other channels you might like . Then , we recommend videos from those channels . At least , that ' s how it works right now . But expect a lot of rapid change .
# # Does Odysee manipulate the results ?
No . The current algorithm itself has a tendency to favor channels with more viewers . But this is just because we have more evidence for those ones . Otherwise , we aren ' t making editorial decisions or picking favorites .
# # My results suck , wtf ?
2022-03-16 04:49:08 +01:00
The more videos you watch , the better it should be . But this system is brand new and it will take a bit of time to tune it . Please have patience . Or , if you want to complain or suggest something , please email : mailto : recommendations @ odysee . com
2022-03-15 20:07:31 +01:00
# # Why don ' t I have any recommendations ?
2022-03-16 04:49:08 +01:00
Right now , it 's a Premium feature. But you also might not be using Odysee enough. It' s hard to make recommendations without knowing much about you . Otherwise , if you use uBlock Origin or Brave , make sure they are disabled on Odysee , as they interfere with us learning what you like . ` ;
2022-03-15 20:07:31 +01:00
return (
< Page >
< MarkdownPreview content = { _ _ ( content ) } simpleLinks / >
< / Page >
) ;
}