LCS in context of ML- Martin Mihál
Goal of project
Goal of the project is show possibilities of LCS algorithm in non-robotic enviroment - in area of - we can say - "pure" machine learning. I'll use data of activity of user of given website(http://www.publico.es/) from Piano(http://piano.io/) system and the goal of whole process will be define set of rules which best define users which will come back to website - that means they are "loyal" in some way and we can try to target them with locking of some content and deliver them offer. On the other site, users which are not loyal yet(they won't probablycoma back) - we want to give them freedom in browsing of given website and and develop interest or "addiction" and give them offer later.
Overview
I'll use data of activity of user from period(in this experiment month) A and we want to predict if user will have any interaction in following period B. Between period A and B are some days because we want to track "long-term" loyality no "from-day-to-day" loyality.
Preparing of data
In the process of preparing data are important to take in consideration 2 factors:
- Understanding of data we have and problem we want solve
- Type of data which used algorithm need
As a target value I will use number of pageviews(PV) in period B.
For describing users I'm gonna use following data from period A(all data are in binar value (1/0) because that's format of data which LCS need, except number of PV in period A which I will use in different way). All selected variables has background in data - for example we want track if people from different cities/countries has different properties, we check also how many days there is between first and last PV in period A, if they visit particular sections etc. :
- jan_visits - only non-binary feature - number of PV in period A
- stayMoreThan7 - if the difference between first and last PV was more than 7 days in period A
- stayMoreThan14 - if the difference between first and last PV was more than 14 days in period A
- stayMoreThan21 - if the difference between first and last PV was more than 21 days in period A
- stayMoreThan28 - if the difference between first and last PV was more than 28 days in period A
- fromMobile - if user is from mobile or tablet device
- fromDesktop - if user is from desktop device
- HadDirectVisits - if user visit website direct at least once (write url in browser)
- HadSocialVisits - if user come from social website like FB, Twitter etc at least one
- HadExternalVisits - if user come from different source at least one
- HadSearchVisits - if user come from search engine at least one
- isIOSuser - if user is iOS user
- visitSection13 - of user visit at least 13th most popular section of website
- visitSection12 - of user visit at least 12th most popular section of website
- visitSection11- of user visit at least 11th most popular section of website
- visitSection10 - of user visit at least 10th most popular section of website
- visitSection9 - of user visit at least 9th most popular section of website
- visitSection8 - of user visit at least 8th most popular section of website
- visitSection7 - of user visit at least 7th most popular section of website
- visitSection6 - of user visit at least 6th most popular section of website
- visitSection5 - of user visit at least 5th most popular section of website
- visitSection4 - of user visit at least 4th most popular section of website
- visitSection3 - of user visit at least 3th most popular section of website
- visitSection2 - of user visit at least 2th most popular section of website
- visitSection1- of user visit at least 1th most popular section of website
- fromUK - if user is from UK
- fromBrazil - if user is from Brazil
- fromUSA - if user is from USA
- fromPortugal - if user is from Portugal
- fromOther - if user is not from Portugal or US or Brazil or UK (most user are from those countries)
- isAdblockUser - if user is using adbocker
- fromLisbao - if user is from Lisbao city
- fromBraga - if user is from Braga city
- fromCoimbra if user is from Coimbra city
- feb_visits - TARGET VALUE - HOW MANY PV HAS GIVEN USER IN FEBUARY
LCS
I'm going to try solve this problem with LCS, more precisely with XCS version of LCS. I don't want to go deep into topic about LCS here so I'm providing bunch of links which help in uderstanding of that:
- https://www.youtube.com/watch?v=CRge_cZ2cJc&t=619s
- http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.35.3146&rep=rep1&type=pdf
- https://pythonhosted.org/xcs/
Basicaly result of LCS is set of rule which define
LCS algorithm
TODO
Results
TODO