Questions tagged [personalization]

Personalization involves using technology to accommodate the differences between individuals, such as greeting the user by name or varying content according to what you know about the user's interests. Personalization implies that the changes are based on implicit data, such as items purchased or pages viewed. The term customization is used instead when the site only uses explicit data such as ratings or preferences.

Personalization involves using technology to accommodate the differences between individuals. Web pages are personalized based on the characteristics (interests, social category, context, ...) of an individual. Personalization implies that the changes are based on implicit data, such as items purchased or pages viewed. The term customization is used instead when the site only uses explicit data such as ratings or preferences.

There are three categories of personalization:

  1. Profile / Group based
  2. Behaviour based (also known as Wisdom of the Crowds)
  3. Collaboration based

Web personalization models include rules-based filtering, based on "if this, then that" rules processing, and collaborative filtering, which serves relevant material to customers by combining their own personal preferences with the preferences of like-minded others.

Collaborative filtering works well for books, music, video, etc. However, it does not work well for a number of categories such as apparel, jewelry, cosmetics, etc. Recently, another method, Prediction Based on Benefit, has been proposed for products with complex attributes such as apparel.

There are three broad methods of personalization:

  1. Implicit
  2. Explicit
  3. Hybrid

With implicit personalization the personalization is performed based on the different categories mentioned above. With explicit personalization, the web page (or information system) is changed by the user using the features provided by the system. Hybrid personalization combines the above two approaches to leverage "the best of both worlds".

162 questions
2
votes
1 answer

Personalized Search with Lucene

I'd like to ask questions about personalized search. I'm about to design/implement a personalized search with Lucene. I did some googling about that, but didn't seem to find module/tools ready to use with Lucene. So I guess I need to implement one…
ycl
  • 86
  • 1
  • 8
2
votes
2 answers

With sendgrid and python, how to send an email to multiple BCC at once?

Please, in python3 and sendgrid I need to send an email to multiple addresses in BCC way. I have these emails on a list. I'm trying like this with Personalization: import os import json from sendgrid import SendGridAPIClient from…
Reinaldo Chaves
  • 965
  • 4
  • 16
  • 43
2
votes
1 answer

Text selection / personalisation for different users

I have the following scenario: There are a list of headings: Best Holiday Destination for you Choose us for your next vacation Don't miss out on this offer What I want to achieve is, display the best heading for the right user through a ML…
Salaaned
  • 31
  • 3
2
votes
1 answer

Web part personalization permissions on SharePoint 2010

What are the minimum SharePoint 2010 permissions required to allow a user to personalize a web part page, allowing updates and adding web parts to the page but completely restrict the user modifying the shared version? I initially copied the…
diegol
  • 47
  • 1
  • 6
2
votes
1 answer

Which database is best suitable to track users activity on website to know user interest

I want to build a system there I will store user all activity and group user to the segments based on their interest
Kailash Choudhary
  • 570
  • 2
  • 7
  • 15
2
votes
0 answers

How to let users change their Ads consent (personalized or not) by using a switch in iOS App Settings?

Using AdMob and Firebase Analytics, I'm trying to let users change their AdMob consent type in App's Settings by letting them turn a switch on/off for personalized ads (If users turn the switch "On", they would get personalized ads and if they turn…
2
votes
1 answer

Looking for an open-source, Java-based Personalization engine

Maybe my google-fu is broken this morning, but I can't find anything that meets the general requirements of: rules based (like jbpm/drools) content/targeting centric (like the old ATG Personalization Server) open source java Anyone have any…
user311121
  • 309
  • 1
  • 4
  • 14
2
votes
1 answer

Install for Personalization failure with error code as 0x6F00

I am trying to Install for Personalize an applet but when i send the command java card returns 0x6F00. I tried all possible options but it fails every time. Please provide help. Install for…
2
votes
0 answers

Personalization of Carousel on AEM 6.3

I have a requirement where we need to personalize the carousel in the home page, based on the location from where the website is accessed. For this I have created required segments and activity and brand, and targeted to the carousel component. The…
Smrithi
  • 45
  • 1
  • 3
2
votes
2 answers

liferay personalization rules

I am new to liferay. I want to personalize the web content based on the user profile and also I want to specify personalization rules which decides his content. Based on the user action I want to specify the contents for the next page he is…
Padmanabha Vn
  • 624
  • 1
  • 14
  • 33
2
votes
1 answer

Possible to modify built-in error messages in Python? (If so, how?)

I am wondering if it is possible to edit/customize the behavior and printout of built-in errors in Python. For example, if I type: >>> a = 1 >>> print A Traceback (most recent call last): File "", line 1, in NameError: name 'A' is…
Dennis
  • 111
  • 6
2
votes
4 answers

How to perform multiselection in recyclerview?

I am making an app with personalisation feature where user can select his preference and based on that app will show data. on click of item it should be selected (making item border highlighted) and on re-click it should be unselected also there…
Nitesh Mishra
  • 41
  • 1
  • 4
  • 12
2
votes
2 answers

Personalization in SItecore

I want to display some different sublayout if user has visit some page more than 2 times so I want to use this rules "where the visit no. compares to number" but I do not have idea how I can use it? I tried to add this rule and replace "number" to 2…
Swati Gupta
  • 753
  • 2
  • 8
  • 30
2
votes
1 answer

How to get the current persona of a user session in sitecore?

I am using sitecore profile cards in the. Is there a way to fetch the current persona of the user that is mapped. I am using sitecore 6.6
Selwyn
  • 1,621
  • 6
  • 21
  • 38
2
votes
1 answer

Scala REPL personalization for internal DSL

On personalizing Scala REPL for internal DSL, from create-your-custom-scala-repl import scala.tools.nsc.Settings import scala.tools.nsc.interpreter.ILoop object TestConsole extends App { val settings = new Settings settings.usejavacp.value =…
elm
  • 20,117
  • 14
  • 67
  • 113
1
2
3
10 11